Browse Source

fix: correct button layout in English locale (#4277)

Co-authored-by: vince <vince292007@gmail.com>
pull/4281/head
handsomeFu 2 years ago
committed by GitHub
parent
commit
cfbe379ee4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      packages/effects/layouts/src/widgets/check-updates/check-updates.vue

4
packages/effects/layouts/src/widgets/check-updates/check-updates.vue

@ -61,7 +61,7 @@ async function checkForUpdates() {
}
function handleNotice(versionTag: string) {
const { dismiss } = toast({
action: h('div', [
action: h('div', { class: 'inline-flex items-center' }, [
h(
ToastAction,
{
@ -94,7 +94,7 @@ function handleNotice(versionTag: string) {
}
function start() {
// 5
// checkUpdatesInterval(1)
timer.value = setInterval(
checkForUpdates,
props.checkUpdatesInterval * 60 * 1000,

Loading…
Cancel
Save