Skip to content

Commit

Permalink
fixed missing renaming in usings of last execution time parsing method
Browse files Browse the repository at this point in the history
Signed-off-by: Max Schiller <[email protected]>
Signed-off-by: Marlon Gäthje <[email protected]>
  • Loading branch information
MM-msr authored and mge-mm committed Nov 7, 2024
1 parent f09497b commit 183d690
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/views/administration/notifications/ScheduledAlerts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ export default {
teams: row.teams,
cronConfig: row.cronConfig,
publishOnlyWithUpdates: row.publishOnlyWithUpdates,
lastExecutionTime: this.parseLastExecutionTime(row),
lastExecutionTime:
this.parseLastExecutionTimeToLocaleString(row),
limitToVisible: false,
labelIcon: {
dataOn: '\u2713',
Expand All @@ -289,7 +290,7 @@ export default {
this.parseToken(this.alert);
this.parseTokenHeader(this.alert);
this.parseJiraTicketType(this.alert);
this.parseLastExecutionTime(this.alert);
this.parseLastExecutionTimeToLocaleString(this.alert);
},
watch: {
enabled() {
Expand Down

0 comments on commit 183d690

Please sign in to comment.