Skip to content
Snippets Groups Projects
Commit 06292e0e authored by yvesn's avatar yvesn
Browse files

SSDM-5068 : ELN config on GUI - fixed adding of rows in sample type definitions

SVN: 38213
parent 93d2f606
No related branches found
No related tags found
No related merge requests found
......@@ -320,7 +320,7 @@ function SettingsFormView(settingsFormController, settingsFormModel) {
return {
label : option,
value : option,
selected : option === rowData.hintType.label,
selected : rowData.hintType && option === rowData.hintType.label,
};
}), "hints for children/parents");
}).bind(this),
......@@ -335,7 +335,7 @@ function SettingsFormView(settingsFormController, settingsFormModel) {
value : option,
selected : option === rowData.TYPE,
};
}), "hint for type");
}), "hints for type");
},
"Min" : function(rowData) {
return $("<input>", { type : "text", class : "form-control" }).val(rowData.MIN_COUNT);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment