Skip to content

Commit

Permalink
fix(multiple price form): disable Done button until at least 1 produc…
Browse files Browse the repository at this point in the history
…t is uploaded. closes #222
  • Loading branch information
raphodn committed Jan 25, 2024
1 parent e4c7fd2 commit 7220da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/AddPriceMultiple.vue
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@
class="float-right"
type="submit"
:loading="createPriceLoading"
:disabled="!proofLocationFormFilled"
:disabled="!proofLocationFormFilled || !productPriceUploadedList.length"
@click="done"
>{{ $t('AddPriceMultiple.Done') }}</v-btn>
</v-col>
Expand Down

0 comments on commit 7220da0

Please sign in to comment.