File tree Expand file tree Collapse file tree 4 files changed +2
-4
lines changed Expand file tree Collapse file tree 4 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 43
43
<v-col cols =" 12" >
44
44
<CodeBlock
45
45
:code =" usageIndividual"
46
- F
47
46
:highlightjs =" codeBlockSettings.plugin === 'highlightjs'"
48
47
label =" Local Registration"
49
48
lang =" html"
Original file line number Diff line number Diff line change @@ -221,14 +221,14 @@ import {
221
221
TextFieldProperties ,
222
222
VuetifyDefaults ,
223
223
} from ' @/plugin/types' ;
224
+ import type { VCard } from ' vuetify/components' ;
224
225
import { useConvertToUnit } from ' @composables/helpers' ;
225
226
import {
226
227
useCardClasses ,
227
228
useTextFieldClasses ,
228
229
} from ' @composables/classes' ;
229
230
import ColorPickerIcon from ' @components/ColorPickerIcon.vue' ;
230
231
import PipComponent from ' @components/PipComponent.vue' ;
231
- import type { VCard } from ' vuetify/components' ;
232
232
import { onClickOutside } from ' @vueuse/core' ;
233
233
import { globalOptions } from ' ./' ;
234
234
Original file line number Diff line number Diff line change 1
1
import { describe , it , expect } from 'vitest' ;
2
- // import { inject } from 'vue';
3
2
import {
4
3
useGetIcon
5
4
} from '../icons' ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export const useGetIcon: UseGetIcon = (options) => {
25
25
const iconSet = defaultIcons [ iconAbbv ] ;
26
26
27
27
if ( ! iconSet ) {
28
- throw new Error ( `[VColorField]: No VColorField default ${ iconOptions ?. defaultSet } icon set found.` ) ;
28
+ throw new Error ( `[VColorField]: No default ${ iconOptions ?. defaultSet } icon set found.` ) ;
29
29
}
30
30
31
31
const newIcon = iconSet [ name ] ;
You can’t perform that action at this time.
0 commit comments