budibase/packages/client/src/components/UpdatingApp.svelte

10 lines
175 B
Svelte
Raw Normal View History

2023-12-19 12:05:27 +01:00
<script>
2024-01-08 12:07:26 +01:00
import { Updating } from "@budibase/frontend-core"
2023-12-19 12:20:05 +01:00
2024-01-08 12:07:26 +01:00
async function onMigrationDone() {
window.location.reload()
2023-12-19 12:20:05 +01:00
}
2023-12-19 12:05:27 +01:00
</script>
2024-01-08 12:10:35 +01:00
<Updating {onMigrationDone} />