We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d1b95 commit 01fef46Copy full SHA for 01fef46
src/plugin/composables/__tests__/icons.test.ts
@@ -1,5 +1,4 @@
1
import { describe, it, expect } from 'vitest';
2
-// import { inject } from 'vue';
3
import {
4
useGetIcon
5
} from '../icons';
src/plugin/composables/icons.ts
@@ -25,7 +25,7 @@ export const useGetIcon: UseGetIcon = (options) => {
25
const iconSet = defaultIcons[iconAbbv];
26
27
if (!iconSet) {
28
- throw new Error(`[VColorField]: No VColorField default ${iconOptions?.defaultSet} icon set found.`);
+ throw new Error(`[VColorField]: No default ${iconOptions?.defaultSet} icon set found.`);
29
}
30
31
const newIcon = iconSet[name];
0 commit comments