fix(environments): restore missing delete button in large screen view of environment variables table

This commit is contained in:
duorameng
2026-06-26 09:48:58 +08:00
parent 79fcf26c88
commit 2379b11836
@@ -272,6 +272,9 @@ onMounted(() => {
<Button variant="ghost" size="icon" class="h-6 w-6" @click="openEdit(env)" title="编辑">
<Pencil class="h-3 w-3" />
</Button>
<Button variant="ghost" size="icon" class="h-6 w-6 text-destructive" @click="confirmDelete(env.id)" title="删除">
<Trash2 class="h-3 w-3" />
</Button>
</div>
</div>
</div>