Skip to content

Commit

Permalink
fixing overly permissive regular expression range (#63)
Browse files Browse the repository at this point in the history
Co-authored-by: d-linko <[email protected]>
  • Loading branch information
d-linko and d-linko authored Nov 22, 2023
1 parent c5736d7 commit f46b409
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {integer, decimal, minValue, helpers } from 'vuelidate/lib/validators'
import Vue from 'vue';
import Vuelidate from 'vuelidate';
Vue.use(Vuelidate);
const ariRegex = helpers.regex('ariRegex',/^ari:\/[a-zA-z]+\.[a-zA-z]\w*$/);
const ariRegex = helpers.regex('ariRegex',/^ari:\/[a-zA-Z]+\.\w+$/);
export default {
name: "prim",
props: ["type", "name", "index"],
Expand Down

0 comments on commit f46b409

Please sign in to comment.