Merge branch 'feat/automation-naming-ux-updates' of github.com:Budibase/budibase into feat/automation-naming-ux-updates

This commit is contained in:
mike12345567 2023-11-02 17:12:25 +00:00
commit 2dd5a1a344
2 changed files with 3 additions and 3 deletions

View File

@ -5,6 +5,7 @@
import RowSelectorTypes from "./RowSelectorTypes.svelte" import RowSelectorTypes from "./RowSelectorTypes.svelte"
import DrawerBindableSlot from "../../common/bindings/DrawerBindableSlot.svelte" import DrawerBindableSlot from "../../common/bindings/DrawerBindableSlot.svelte"
import AutomationBindingPanel from "../../common/bindings/ServerBindingPanel.svelte" import AutomationBindingPanel from "../../common/bindings/ServerBindingPanel.svelte"
import { TableNames } from "constants"
const dispatch = createEventDispatcher() const dispatch = createEventDispatcher()
@ -97,7 +98,6 @@
// Ensure any nullish tableId values get set to empty string so // Ensure any nullish tableId values get set to empty string so
// that the select works // that the select works
$: if (value?.tableId == null) value = { tableId: "" } $: if (value?.tableId == null) value = { tableId: "" }
$: console.log($tables.list)
</script> </script>
<div class="schema-fields"> <div class="schema-fields">
@ -106,7 +106,7 @@
<Select <Select
on:change={onChangeTable} on:change={onChangeTable}
value={value.tableId} value={value.tableId}
options={$tables.list.filter(table => table._id !== "ta_users")} options={$tables.list.filter(table => table._id !== TableNames.USERS)}
getOptionLabel={table => table.name} getOptionLabel={table => table.name}
getOptionValue={table => table._id} getOptionValue={table => table._id}
/> />

View File

@ -22,7 +22,7 @@
<Select <Select
on:change={onChange} on:change={onChange}
bind:value bind:value
options={filteredTables} options={filteredTables.filter(table => table._id !== TableNames.USERS)}
getOptionLabel={table => table.name} getOptionLabel={table => table.name}
getOptionValue={table => table._id} getOptionValue={table => table._id}
/> />