Shorten displayed linked by default (#4951)
This commit is contained in:
parent
2c3ba6e528
commit
812b256e08
|
|
@ -403,7 +403,7 @@ function renderLink(text, url, options={}) {
|
|||
return text;
|
||||
}
|
||||
|
||||
var max_length = options.max_length || 0;
|
||||
var max_length = options.max_length || user_settings.TABLE_STRING_MAX_LENGTH || 100;
|
||||
|
||||
if (max_length > 0) {
|
||||
text = shortenString(text, {
|
||||
|
|
|
|||
Loading…
Reference in New Issue