1
0
Fork 0
mirror of synced 2024-10-03 10:36:59 +13:00

Remove the previous attempt at syncing grid state, it is no longer needed.

This commit is contained in:
Sam Rose 2023-10-25 16:00:14 +01:00
parent 0ac6b17ff0
commit c9e3b7a348
No known key found for this signature in database
2 changed files with 0 additions and 7 deletions

View file

@ -53,11 +53,6 @@
await datasources.fetch()
}
}
const refreshDefinitions = async () => {
await tables.fetch()
await datasources.fetch()
}
</script>
<div class="wrapper">
@ -71,7 +66,6 @@
schemaOverrides={isUsersTable ? userSchemaOverrides : null}
showAvatars={false}
on:updatedatasource={handleGridTableUpdate}
on:refreshdefinitions={refreshDefinitions}
>
<svelte:fragment slot="filter">
{#if isUsersTable && $store.features.disableUserMetadata}

View file

@ -45,7 +45,6 @@
notifications.error(`Failed to migrate: ${e.message}`)
}
await rows.actions.refreshData()
dispatch("refreshdefintions")
}
</script>