Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
luizkim committed Oct 15, 2024
1 parent 9c5c9f1 commit 96a0d80
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/Default/Common/FormInputs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<Html
v-if="inputType == 'file' && isPreview()"
:readonly="column.editInline != true"
:editInline="column.editInline"
:key="key"
:data="data"
@saved="forceSave"
Expand Down
6 changes: 5 additions & 1 deletion src/components/Default/Common/Inputs/Html.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
:readonly="readonly"
>
<File
v-if="readonly"
v-if="readonly || editInline == true"
:editable="true"
:data="item"
:fileType="['text']"
Expand Down Expand Up @@ -174,6 +174,10 @@ export default {
required: false,
default: false,
},
editInline: {
required: false,
default: false,
},
generatePDF: {
required: false,
default: false,
Expand Down

0 comments on commit 96a0d80

Please sign in to comment.