Skip to content

Commit

Permalink
work for the #8209 (vue 3 file fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-kurmanov committed May 22, 2024
1 parent 2497d1b commit 6c024a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/survey-vue3-ui/src/File.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
:capture="(question.renderCapture as any)"
/>
<input
v-if="question.isReadOnly"
v-if="question.isReadOnlyAttr"
type="file"
readonly
:id="question.inputId"
Expand All @@ -26,7 +26,7 @@
style="color: transparent"
/>
<input
v-if="question.isReadOnly"
v-if="question.isDisabledAttr"
type="file"
disabled
:id="question.inputId"
Expand Down

0 comments on commit 6c024a5

Please sign in to comment.