Merge pull request #12472 from Budibase/fix/automations-query-user-table-fix

Allow querying of users table from automation
This commit is contained in:
Peter Clement 2023-11-30 09:24:17 +00:00 committed by GitHub
commit f2bf63101c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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}
/>