1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

Merge branch 'develop' of github.com:Budibase/budibase into cheeks-fixes

This commit is contained in:
Andrew Kingston 2023-09-01 09:42:07 +01:00
commit 0b7998f898
3 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{
"version": "2.9.33-alpha.7",
"version": "2.9.33-alpha.10",
"npmClient": "yarn",
"packages": [
"packages/*"

View file

@ -3,6 +3,9 @@ import { Screen } from "./utils/Screen"
import { Component } from "./utils/Component"
export default function (datasources) {
if (!Array.isArray(datasources)) {
return []
}
return datasources.map(datasource => {
return {
name: `${datasource.name} - List`,

View file

@ -110,7 +110,7 @@
if (mode === "table") {
datasourceModal.show()
} else if (mode === "blank") {
let templates = getTemplates($store, $tables.list)
let templates = getTemplates($tables.list)
const blankScreenTemplate = templates.find(
t => t.id === "createFromScratch"
)