Skip to content

Commit

Permalink
InputSelectMultiple.vueでValueValue型のanyを使用するためのeslint無効化コメントを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
reiroop committed Nov 2, 2024
1 parent 00c4fb1 commit 9231fb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/shared/InputSelectMultiple.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { ChevronDownIcon } from '@heroicons/vue/24/solid';
import { computed, onMounted, onUnmounted, ref, watch } from 'vue';
type ValueValue = Record<string, unknown> | string | null
// eslint-disable-next-line @typescript-eslint/no-explicit-any
type ValueValue = Record<string, any> | string | null
interface Value {
key: string
Expand Down

0 comments on commit 9231fb0

Please sign in to comment.