Skip to content

Commit e17093a

Browse files
Merge pull request #20 from webdevnerdstuff/dev
Dev
2 parents 055130c + ca66484 commit e17093a

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

src/documentation/sections/UsageSection.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
<v-col cols="12">
4444
<CodeBlock
4545
:code="usageIndividual"
46-
F
4746
:highlightjs="codeBlockSettings.plugin === 'highlightjs'"
4847
label="Local Registration"
4948
lang="html"

src/plugin/VColorField.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,14 @@ import {
221221
TextFieldProperties,
222222
VuetifyDefaults,
223223
} from '@/plugin/types';
224+
import type { VCard } from 'vuetify/components';
224225
import { useConvertToUnit } from '@composables/helpers';
225226
import {
226227
useCardClasses,
227228
useTextFieldClasses,
228229
} from '@composables/classes';
229230
import ColorPickerIcon from '@components/ColorPickerIcon.vue';
230231
import PipComponent from '@components/PipComponent.vue';
231-
import type { VCard } from 'vuetify/components';
232232
import { onClickOutside } from '@vueuse/core';
233233
import { globalOptions } from './';
234234

src/plugin/composables/__tests__/icons.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { describe, it, expect } from 'vitest';
2-
// import { inject } from 'vue';
32
import {
43
useGetIcon
54
} from '../icons';

src/plugin/composables/icons.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const useGetIcon: UseGetIcon = (options) => {
2525
const iconSet = defaultIcons[iconAbbv];
2626

2727
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.`);
2929
}
3030

3131
const newIcon = iconSet[name];

0 commit comments

Comments
 (0)