Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Nov 21, 2024
1 parent 17fbd1c commit cab4958
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion src/components/AppSidebar/AppSidebarSectionToggler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps({
type: String
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
to: {
type: Object
Expand Down
2 changes: 1 addition & 1 deletion src/components/BatchSearch/BatchSearchCardDetailsEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defineOptions({ name: 'BatchSearchCardDetailsEntry' })
defineProps({
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
label: {
type: String
Expand Down
2 changes: 1 addition & 1 deletion src/components/Display/DisplayStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const props = defineProps({
type: String
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
title: {
type: String
Expand Down
2 changes: 1 addition & 1 deletion src/components/Display/DisplayStatusProgress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const props = defineProps({
type: String
},
statusIcon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
statusTitle: {
type: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ defineProps({
type: String
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
hideIcon: {
type: Boolean
Expand Down
2 changes: 1 addition & 1 deletion src/components/EmptyState/EmptyState.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const props = defineProps({
type: String
},
actionIcon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
actionHref: {
type: String
Expand Down
2 changes: 1 addition & 1 deletion src/components/EmptyState/EmptyStateAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defineProps({
type: String
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
href: {
type: String
Expand Down
2 changes: 1 addition & 1 deletion src/components/FiltersPanel/FiltersPanelSectionFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const props = defineProps({
default: 0
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
hideContextualize: {
type: Boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const props = defineProps({
type: String
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
count: {
type: Number,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const props = defineProps({
type: Boolean
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
title: {
type: String
Expand Down
2 changes: 1 addition & 1 deletion src/components/PageSettings/PageSettingsEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defineOptions({
})
defineProps({
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
text: {
type: String,
Expand Down
2 changes: 1 addition & 1 deletion src/components/PathTree/PathTreeView/PathTreeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps({
type: String
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
selectMode: {
type: Boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ import ImageMode from '@/components/ImageMode/ImageMode'
import ImageModeSource from '@/components/ImageMode/ImageModeSource'
const props = defineProps({
icon: {
icon: {
type: [String, Object, Array]
},
label: {
type: String
label: {
type: String
},
thumbnail: {
type: String
thumbnail: {
type: String
},
active: {
active: {
type: Boolean
}
}
})
const imageClassList = computed(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defineProps({
type: Boolean
},
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
count: {
type: Number,
Expand Down
2 changes: 1 addition & 1 deletion src/components/TabGroup/TabGroupTitle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { PhosphorIcon } from '@icij/murmur-next'
defineProps({
icon: {
type: [String, Object, Array],
type: [String, Object, Array]
},
count: {
type: Number,
Expand Down

0 comments on commit cab4958

Please sign in to comment.