KASM-3806 revert yaml changes to working ones

release/1.1.0
ryan.kuba 2 years ago
parent ea7568b240
commit ee10b81eef
No known key found for this signature in database

@ -2250,13 +2250,20 @@ sub DefineConfigToCLIConversion {
type => KasmVNC::ConfigKey::BOOLEAN type => KasmVNC::ConfigKey::BOOLEAN
}) })
], ],
deriveValueSub => sub { toStringSub => sub {
undef; $self = shift;
}, my $value = $self->configValue();
isActiveSub => sub {
my $self = shift;
$self->configValue() eq 'true'; switch($value) {
case 'true' {
$valuesStr = '-hw3d ';
}
case 'false' {
$valuesStr = ' ';
}
}
return $valuesStr;
} }
}), }),
KasmVNC::CliOption->new({ KasmVNC::CliOption->new({

Loading…
Cancel
Save