fix: Resolve vue-tsc -b errors in KitsView and TimedExecuteView
All checks were successful
Test Asgard Runner / test (push) Successful in 3s
All checks were successful
Test Asgard Runner / test (push) Successful in 3s
KitsView: cast v-for Items array to fix string|number index type mismatch. TimedExecuteView: remove unused X icon import. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -488,7 +488,7 @@ async function handleImport() {
|
|||||||
|
|
||||||
<div v-else class="space-y-3">
|
<div v-else class="space-y-3">
|
||||||
<div
|
<div
|
||||||
v-for="(item, itemIdx) in currentKit.Items"
|
v-for="(item, itemIdx) in (currentKit.Items as any[])"
|
||||||
:key="itemIdx"
|
:key="itemIdx"
|
||||||
class="flex items-center gap-3 bg-neutral-800/50 border border-neutral-700/50 rounded-lg p-3"
|
class="flex items-center gap-3 bg-neutral-800/50 border border-neutral-700/50 rounded-lg p-3"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import {
|
|||||||
Trash2,
|
Trash2,
|
||||||
Clock,
|
Clock,
|
||||||
Settings as SettingsIcon,
|
Settings as SettingsIcon,
|
||||||
X,
|
|
||||||
UserPlus,
|
UserPlus,
|
||||||
UserMinus,
|
UserMinus,
|
||||||
} from 'lucide-vue-next'
|
} from 'lucide-vue-next'
|
||||||
|
|||||||
Reference in New Issue
Block a user