Skip to content

Commit 8fe8e99

Browse files
committed
ui: fix considerlasthost for start vm
Fixes #10601 Signed-off-by: Abhishek Kumar <[email protected]>
1 parent 95c2481 commit 8fe8e99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/views/compute/StartVirtualMachine.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ export default {
237237
id: this.resource.id
238238
}
239239
for (const key in values) {
240-
if (values[key]) {
240+
if (values[key] || values[key] === false) {
241241
params[key] = values[key]
242242
}
243243
}

0 commit comments

Comments
 (0)