Fix UI on Ticket Automation page
On the ticket automation page, the div for the automation title/description is set extremely short (440px). This leaves the descriptions completely cut of if anything more then approx 10 words. Other than hovering over the description, there is also no easy way to view the descriptions for all the rules at once. A simple CSS adjustment would fix this:
.nameAndDesc {
width: 440px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
Change the width to something more reasonable (even 640px makes a huge difference). Its unlikely that any users of Atera are using a screen resolution so small that this needs to be restricted that much.