Skip to content

Commit

Permalink
web/satellite: remove dynamic tax id length restriction
Browse files Browse the repository at this point in the history
This change removes the dynamic length restriction on the tax ID form
that was based on the ID example hint replacing it with 50, because
real tax IDs may have longer lengths than their examples.

Change-Id: I24389dfa512f26110e794f06ddfa38fe4c975bfa
  • Loading branch information
wilfred-asomanii authored and andriikotko committed May 9, 2024
1 parent 712add7 commit 44c8bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/satellite/src/components/dialogs/AddTaxIdDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
placeholder="Enter your Tax ID"
:hint="'e.g.: ' + tax?.example"
:hide-details="false"
:maxlength="tax?.example?.length"
:maxlength="50"
required
/>
</v-form>
Expand Down

0 comments on commit 44c8bd7

Please sign in to comment.