Skip to content

Commit

Permalink
fix(file-input): do not disable file-input
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffnawroth committed Nov 18, 2024
1 parent c82bdab commit 216e4b9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Input/FileInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useDoiStore } from '~/stores/doi'
// Doi Store
const doiStore = useDoiStore()
const { bibliography, url, file, dois } = storeToRefs(doiStore)
const { bibliography, file, dois } = storeToRefs(doiStore)
// Data
Expand Down Expand Up @@ -52,7 +52,6 @@ watch(file, (newValue) => {
prepend-inner-icon="mdi-file-pdf-box"
prepend-icon=""
clearable
:disabled="!!url"
hide-details="auto"
/>
</template>

0 comments on commit 216e4b9

Please sign in to comment.