PR comments.
This commit is contained in:
parent
d8870f1852
commit
99536c2d0b
|
@ -8,7 +8,7 @@ const ROW_ID_REGEX = /^\[.*]$/g
|
|||
const ENCODED_SPACE = encodeURIComponent(" ")
|
||||
|
||||
export function isExternalTableID(tableId: string) {
|
||||
return tableId.includes(DocumentType.DATASOURCE)
|
||||
return tableId.startsWith(DocumentType.DATASOURCE + SEPARATOR)
|
||||
}
|
||||
|
||||
export function isInternalTableID(tableId: string) {
|
||||
|
|
|
@ -7,6 +7,6 @@ if [ ! -d "./packages/pro/src" ]; then
|
|||
fi
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue