1
0
Fork 0
mirror of synced 2024-09-21 11:53:49 +12:00

bump bbui version and fix disabled Select component in user row component

This commit is contained in:
kevmodrome 2020-06-29 13:31:51 +02:00
parent 3264441fca
commit f25ae8750d
No known key found for this signature in database
GPG key ID: E8F9CD141E63BF38
2 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@
]
},
"dependencies": {
"@budibase/bbui": "^1.13.0",
"@budibase/bbui": "^1.14.0",
"@budibase/client": "^0.0.32",
"@nx-js/compiler-util": "^2.0.0",
"codemirror": "^5.51.0",

View file

@ -14,7 +14,7 @@
bind:value={user.username}
name="Name"
placeholder="Username" />
<Select disabled={editMode} bind:value={user.accessLevelId} thin>
<Select disabled={!editMode} bind:value={user.accessLevelId} thin>
<option value="ADMIN">Admin</option>
<option value="POWER_USER">Power User</option>
</Select>