Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions www/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint --ignore-path .gitignore --no-fix src/**/*.{vue,js,json}",
"lint:fix": "eslint --ignore-path .gitignore --fix src/**/*.{vue,js,json}",
"lint": "eslint --ignore-path .gitignore --no-fix \"src/**/*.{vue,js,json}\"",
"lint:fix": "eslint --ignore-path .gitignore --fix \"src/**/*.{vue,js,json}\"",
"postinstall": "vue-demi-switch 3"
},
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion www/webapp/src/components/Field/RecordDS.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import { and, helpers, integer, between } from '@vuelidate/validators';
import { helpers, integer, between } from '@vuelidate/validators';
import RecordItem from './RecordItem.vue';
import { dnskey_algorithm_mnemonics } from './RecordDNSKEY.vue';

Expand Down
2 changes: 1 addition & 1 deletion www/webapp/src/components/Field/RecordTLSA.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import { and, helpers, integer, between } from '@vuelidate/validators';
import { helpers, integer, between } from '@vuelidate/validators';
import RecordItem from './RecordItem.vue';

const hex = helpers.regex(/^([0-9a-fA-F]\s*)*[0-9a-fA-F]$/);
Expand Down
Loading