mirror of
https://github.com/outbackdingo/databunker.git
synced 2026-01-27 18:18:43 +00:00
shorten long strings
This commit is contained in:
@@ -54,9 +54,9 @@
|
||||
}
|
||||
if (row.msg) {
|
||||
if (row.status && row.status == "ok") {
|
||||
result = result + '<br/><i class="fas fa-check"></i> ' + row.msg;
|
||||
result = result + '<br/><i class="fas fa-check"></i> ' + shortString(row.msg);
|
||||
} else {
|
||||
result = result + '<br/><i class="fas fa-times"></i> ' + row.msg;
|
||||
result = result + '<br/><i class="fas fa-times"></i> ' + shortString(row.msg);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
||||
Reference in New Issue
Block a user