Skip to content

Commit

Permalink
fix(projects): fix setupAppVersionNotification render
Browse files Browse the repository at this point in the history
  • Loading branch information
honghuangdc committed Jun 7, 2024
1 parent 0f6b73f commit 63d5dc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function setupAppVersionNotification() {
window.$notification?.destroy(key);
}
},
$t('system.updateCancel')
() => $t('system.updateCancel')
),
h(
Button,
Expand All @@ -31,7 +31,7 @@ export function setupAppVersionNotification() {
location.reload();
}
},
$t('system.updateConfirm')
() => $t('system.updateConfirm')
)
]);
}
Expand Down

0 comments on commit 63d5dc5

Please sign in to comment.