Replies: 1 comment 2 replies
-
Hey @raorsa thanks for the suggestion. 🙏 Although the solution doesn't seem that trivial to me. As a developer, I can use the limit with negative values to cap a string. Imagine that you have something like I would rather allow the You can set the I am closing this as I don't think there is any need to keep this open, we are happy with the limit "workaround", but feel free to continue the conversation if you think I am wrong here. I have been wrong many times before 👍 Cheers |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Have the possibility of not limiting the value of text columns, setting the LIMIT value to 0
text.blade.php
line 19
$column['text'] = $column['prefix'].($column['limit']>0?Str::limit($column['value'], $column['limit'], '…'):$column['value']).$column['suffix'];
Beta Was this translation helpful? Give feedback.
All reactions