Have you checked these first?
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
Note: Never paste the contents of your ost-config.php file here; it holds your database credentials.
Two quick checks before posting: try clearing your browser cache, and press SHIFT+O on any Staff Panel page to enter Safe Mode (a stock osTicket with no enhancements). If the problem still shows in Safe Mode, it's in osTicket itself, not osTicket Awesome. But let us know about the issue either way.
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
This forum is public. Never post order numbers, full license keys, email addresses, or payment details.
This is the place for general questions about how billing and licensing work — renewals, activation, staging slots, plan differences, and what happens when a license lapses.
For anything tied to your specific account, refund, or payment, contact us directly instead.
Hello,
There seems to be an issue when trying to utilize the custom column text overflow behavior options (Text wrap, Clipping, etc.), specifically the text clipping option.
Attached are the OSTA and native osTicket displays.
Also the preview tab would be a great addition.
Thank you in advance.

osTicket version 1.18.2
Thanks for the detailed report and screenshots, Daniel.Thanks for the detailed report and screenshots, Daniel.
You're right. osTicket Awesome rebuilds the ticket list with its own responsive column layout, and in doing so it currently overrides osTicket's native Clip/Ellipsis behavior, so cells wrap instead of staying on one line. That's why your "Issue summary" column overflows in the list even though it clips correctly in the queue Preview. It's a real limitation on our side, and it's on our list to make these options work natively.
In the meantime, you can force one-line clipping by pasting this into Admin Panel → (osAwesome settings) → Custom CSS:
form[action="tickets.php"] table.list td .truncate {
display: block;
max-width: 100% !important;
white-space: nowrap;
overflow: hidden;
}
form[action="tickets.php"] table.list td .truncate:not(.bleed) {
text-overflow: ellipsis;
}
One heads-up: this applies to every column you've set to Clip or Ellipsis (including Subject), not just "Issue summary". There's no reliable way to target a single custom column, since columns can be reordered. And on narrow screens it'll cut text more aggressively. If that tradeoff works for your data-heavy view, it should do the job.