1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

adds disabled state to relationship type - column must be re-created in order to change the value

This commit is contained in:
Keviin Åberg Kultalahti 2021-02-19 13:49:28 +01:00
parent aa38952131
commit 15947eb9a5
3 changed files with 6 additions and 6 deletions

View file

@ -63,7 +63,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@budibase/bbui": "^1.58.7", "@budibase/bbui": "^1.58.12",
"@budibase/client": "^0.7.7", "@budibase/client": "^0.7.7",
"@budibase/colorpicker": "1.0.1", "@budibase/colorpicker": "1.0.1",
"@budibase/string-templates": "^0.7.7", "@budibase/string-templates": "^0.7.7",

View file

@ -204,7 +204,7 @@
<Label grey extraSmall>Select relationship type</Label> <Label grey extraSmall>Select relationship type</Label>
<div class="radio-buttons"> <div class="radio-buttons">
{#each types as type} {#each types as type}
<Radio name="Relationship type" value={type} bind:group={selectedRelationshipType}> <Radio disabled={originalName} name="Relationship type" value={type} bind:group={selectedRelationshipType}>
<label for={type}>{type}</label> <label for={type}>{type}</label>
</Radio> </Radio>
{/each} {/each}

View file

@ -842,10 +842,10 @@
lodash "^4.17.19" lodash "^4.17.19"
to-fast-properties "^2.0.0" to-fast-properties "^2.0.0"
"@budibase/bbui@^1.58.7": "@budibase/bbui@^1.58.12":
version "1.58.7" version "1.58.12"
resolved "https://registry.yarnpkg.com/@budibase/bbui/-/bbui-1.58.7.tgz#b9ae18fbd44f830fd8b11fd1dbfaf1212243c88b" resolved "https://registry.yarnpkg.com/@budibase/bbui/-/bbui-1.58.12.tgz#e73b946b5faf7ae58ce588e6dd82c0cf3f56bff2"
integrity sha512-Kp6iNFXov5DXOTR9860kBJv4zgFEycBw13pdZgcPUERI++OWHtisEo6fuHIEfQGeALif3QEcYwaGr/6pu76C4w== integrity sha512-lJ8ObTDg6Xev3uCA8HTJWIm2XKEtcXibV0lIqbqkowYjYlEP+gNi6rs+l8C8r754SVUyqvJt5OOTFXsnqdF28g==
dependencies: dependencies:
markdown-it "^12.0.2" markdown-it "^12.0.2"
quill "^1.3.7" quill "^1.3.7"