Fix: select all instance

This commit is contained in:
Lazy 2024-01-10 10:58:56 +08:00
parent 087c566c59
commit 126a37b847

View File

@ -163,6 +163,7 @@ const selectAllInstances = () => {
selectedInstance.value = [];
} else {
for (const item of instancesMoreInfo.value) {
if (findInstance(item)) continue;
selectedInstance.value.push(item);
}
}