Clean up model display
Improve message and add newline
This commit is contained in:
parent
e6c5dd63a0
commit
808e676972
|
@ -263,13 +263,13 @@
|
||||||
|
|
||||||
function SetColColorFirm(value, row, index) {
|
function SetColColorFirm(value, row, index) {
|
||||||
if (row['validate'].split(';')[0] === 'no') {
|
if (row['validate'].split(';')[0] === 'no') {
|
||||||
return 'Not found '+ value;
|
return "File not found<br />" + value;
|
||||||
}
|
}
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
function SetColColorTempl(value, row, index) {
|
function SetColColorTempl(value, row, index) {
|
||||||
if (row['validate'].split(';')[1] === 'no') {
|
if (row['validate'].split(';')[1] === 'no') {
|
||||||
return 'Not found ' + value ;
|
return "File not found<br /> " + value ;
|
||||||
}
|
}
|
||||||
return value;
|
return value;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue