KASM-3806 revert yaml changes to working ones

This commit is contained in:
ryan.kuba 2023-03-02 13:06:29 -08:00
parent ea7568b240
commit ee10b81eef
No known key found for this signature in database

View File

@ -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({