1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Merge pull request #1588 from Budibase/fix/no-page-load

Fix/no page load
This commit is contained in:
Michael Drury 2021-05-28 20:03:57 +01:00 committed by GitHub
commit b5d1429c9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 1310 additions and 19 deletions

View file

@ -291,7 +291,7 @@
/>
{#if relationshipOptions && relationshipOptions.length > 0}
<RadioGroup
disabled={originalName}
disabled={originalName != null}
label="Define the relationship"
bind:value={field.relationshipType}
options={relationshipOptions}

View file

@ -9,7 +9,8 @@ function getAppRole(appId, user) {
if (!user.roles) {
return user
}
user.roleId = user.roles[appId]
// always use the deployed app
user.roleId = user.roles[getDeployedAppID(appId)]
if (!user.roleId) {
user.roleId = BUILTIN_ROLE_IDS.PUBLIC
}
@ -97,8 +98,6 @@ exports.deleteGlobalUser = async (ctx, globalId) => {
}
exports.getGlobalUsers = async (ctx, appId = null, globalId = null) => {
// always use the deployed app
appId = getDeployedAppID(appId)
const endpoint = globalId
? `/api/admin/users/${globalId}`
: `/api/admin/users`
@ -136,7 +135,6 @@ exports.getGlobalSelf = async (ctx, appId = null) => {
}
exports.addAppRoleToUser = async (ctx, appId, roleId, userId = null) => {
appId = getDeployedAppID(appId)
let user,
endpoint,
body = {}

File diff suppressed because it is too large Load diff

View file

@ -77,6 +77,9 @@ const lengthConstraint = maxLength => value => {
}
const numericalConstraint = (constraint, error) => value => {
if (value == null || value === "") {
return null
}
if (isNaN(value)) {
return "Must be a number"
}