Skip to content

Commit

Permalink
chore(perf-report): Typo mistake in field name of Query Deadlock re…
Browse files Browse the repository at this point in the history
…port
  • Loading branch information
tanmoysrt committed Dec 30, 2024
1 parent a831c63 commit 255cb04
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default {
name: this.name,
start_datetime: this.start_datetime,
stop_datetime: this.stop_datetime,
max_log_size: this.max_log_size
max_log_size: parseInt(this.max_log_size ?? '')
};
},
auto: true,
Expand Down Expand Up @@ -102,7 +102,7 @@ export default {
},
{
label: 'Max Log Lines',
fieldname: 'max_lines',
fieldname: 'max_log_size',
default: this.max_log_size
}
];
Expand Down

0 comments on commit 255cb04

Please sign in to comment.