1
0
Fork 0
mirror of synced 2024-06-03 02:55:14 +12:00

Revert "Filter users table out of DataSource component and NewScreenModal"

This commit is contained in:
Martin McKeaveney 2021-08-26 10:11:48 +01:00 committed by GitHub
parent 7c9f0b83ca
commit f0bebb036a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,7 @@
<script>
import { store, allScreens, selectedAccessRole } from "builderStore"
import { tables, roles } from "stores/backend"
import { tables } from "stores/backend"
import { roles } from "stores/backend"
import { Input, Select, ModalContent, Toggle } from "@budibase/bbui"
import getTemplates from "builderStore/store/screenTemplates"
import analytics from "analytics"
@ -15,7 +16,7 @@
let createLink = true
let roleId = $selectedAccessRole || "BASIC"
$: templates = getTemplates($store, tables.getDataSources())
$: templates = getTemplates($store, $tables.list)
$: route = !route && $allScreens.length === 0 ? "*" : route
$: {
if (templates && templateIndex === undefined) {

View file

@ -31,7 +31,7 @@
export let bindings = []
$: text = value?.label ?? "Choose an option"
$: tables = tablesStore.getDataSources().map(m => ({
$: tables = $tablesStore.list.map(m => ({
label: m.name,
tableId: m._id,
type: "table",

View file

@ -87,7 +87,6 @@ export function createTablesStore() {
draft: {},
})
},
getDataSources: () => get(store).list.filter(t => t.name !== "Users"),
delete: async table => {
await api.delete(`/api/tables/${table._id}/${table._rev}`)
update(state => ({