Skip to content

Commit

Permalink
UBER-747: fix readonly field (#3593)
Browse files Browse the repository at this point in the history
Signed-off-by: Vyacheslav Tumanov <me@slavatumanov.me>
  • Loading branch information
ThetaDR authored Aug 15, 2023
1 parent 85d1a95 commit cdba698
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<svelte:component
this={editor}
readonly={isReadonly}
disabled="(isReadonly)"
disabled={isReadonly}
label={attribute?.label}
placeholder={attribute?.label}
{kind}
Expand All @@ -102,7 +102,7 @@
{attributeKey}
value={getAttribute(client, object, { key: attributeKey, attr: attribute })}
readonly={isReadonly}
disabled="(isReadonly)"
disabled={isReadonly}
space={object.space}
{onChange}
{focus}
Expand Down

0 comments on commit cdba698

Please sign in to comment.