PR comments.

This commit is contained in:
mike12345567 2024-05-23 14:24:49 +01:00
parent d8870f1852
commit 99536c2d0b
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ const ROW_ID_REGEX = /^\[.*]$/g
const ENCODED_SPACE = encodeURIComponent(" ") const ENCODED_SPACE = encodeURIComponent(" ")
export function isExternalTableID(tableId: string) { export function isExternalTableID(tableId: string) {
return tableId.includes(DocumentType.DATASOURCE) return tableId.startsWith(DocumentType.DATASOURCE + SEPARATOR)
} }
export function isInternalTableID(tableId: string) { export function isInternalTableID(tableId: string) {

View File

@ -7,6 +7,6 @@ if [ ! -d "./packages/pro/src" ]; then
fi fi
yarn build --scope @budibase/server --scope @budibase/worker yarn build --scope @budibase/server --scope @budibase/worker
DOCKER_BUILDKIT=1 docker compose -f hosting/docker-compose.build.yaml -f hosting/docker-compose.dev.yaml --env-file hosting/.env up --build --scale proxy-service=0 docker compose -f hosting/docker-compose.build.yaml -f hosting/docker-compose.dev.yaml --env-file hosting/.env up --build --scale proxy-service=0