Fetch relationships
This commit is contained in:
parent
6cb664060e
commit
2cbead8bc4
|
@ -186,7 +186,10 @@
|
|||
saveColumn.type === LINK_TYPE &&
|
||||
saveColumn.relationshipType === RelationshipTypes.MANY_TO_MANY
|
||||
) {
|
||||
dispatch("updatetables")
|
||||
// Fetching the new tables
|
||||
tables.fetch()
|
||||
// Fetching the new relationships
|
||||
datasources.fetch()
|
||||
}
|
||||
if (originalName) {
|
||||
notifications.success("Column updated successfully")
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<script>
|
||||
import { getContext, onMount } from "svelte"
|
||||
import { Modal } from "@budibase/bbui"
|
||||
import { tables } from "stores/backend"
|
||||
import CreateEditColumn from "components/backend/DataTable/modals/CreateEditColumn.svelte"
|
||||
|
||||
const { rows, subscribe } = getContext("grid")
|
||||
|
@ -12,10 +11,5 @@
|
|||
</script>
|
||||
|
||||
<Modal bind:this={modal}>
|
||||
<CreateEditColumn
|
||||
on:updatecolumns={rows.actions.refreshTableDefinition}
|
||||
on:updatetables={() => {
|
||||
tables.fetch()
|
||||
}}
|
||||
/>
|
||||
<CreateEditColumn on:updatecolumns={rows.actions.refreshTableDefinition} />
|
||||
</Modal>
|
||||
|
|
Loading…
Reference in New Issue