Allow querying of users table from automation

This commit is contained in:
Peter Clement 2023-11-30 08:58:01 +00:00
parent 37dc8ba6e4
commit 3192a594c7
1 changed files with 1 additions and 1 deletions

View File

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