Skip to content

Commit 32a5a69

Browse files
authored
Fix config resolver in ui (#8157)
1 parent dd2a9ce commit 32a5a69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/cms/ui/yaml_config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,8 +398,8 @@ class YamlConfigState {
398398
var rawLabels = yamlCollectLabels();
399399
for (let label in rawLabels) {
400400
labels.push({
401-
Label: label,
402-
Value: rawLabels[label],
401+
label: label,
402+
value: rawLabels[label],
403403
});
404404
}
405405
var cmd = {

0 commit comments

Comments
 (0)