We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9ae6f commit c5b1fecCopy full SHA for c5b1fec
ui/src/views/AutogenView.vue
@@ -957,7 +957,8 @@ export default {
957
if (param.name !== key) {
958
continue
959
}
960
- if (input === undefined || input === null || input === '') {
+ if (!input === undefined || input === null ||
961
+ (input === '' && !['updateStoragePool', 'updateHost', 'updatePhysicalNetwork'].includes(action.api))) {
962
if (param.type === 'boolean') {
963
params[key] = false
964
0 commit comments