Fixes #3262 - Remove dots next to icons in tables

This commit is contained in:
Bola Ahmed Buari 2021-02-25 14:57:47 +01:00 committed by Martin Edenhofer
parent 0b3b731321
commit 6b370aa45b
6 changed files with 6 additions and 2 deletions

View file

@ -310,6 +310,7 @@ class Download extends App.Controller
attribute =
name: 'icon'
display: ''
parentClass: 'noTruncate'
translation: false
width: '28px'
displayWidth: 28

View file

@ -1184,6 +1184,7 @@ class Table extends App.Controller
attribute =
name: 'icon'
display: ''
parentClass: 'noTruncate'
translation: false
width: '28px'
displayWidth: 28

View file

@ -44,6 +44,7 @@ class App.AnswerList extends App.Controller
attribute =
name: 'icon'
display: ''
parentClass: 'noTruncate'
translation: false
width: '28px'
displayWidth:28

View file

@ -53,6 +53,7 @@ class App.TicketList extends App.Controller
attribute =
name: 'icon'
display: ''
parentClass: 'noTruncate'
translation: false
width: '28px'
displayWidth: 28

View file

@ -12,7 +12,7 @@
<tbody>
<% for item in @items: %>
<tr>
<td><input type="checkbox" name="object_id" value="<%= item.id %>"/></td>
<td class="noTruncate"><input type="checkbox" name="object_id" value="<%= item.id %>"/></td>
<td title="<%= item.id %>"><%= item.id %></td>
<td title="<%= item.title %>"><a href="<%- item.link %>" target="_blank"><%= item.title %></a></td>
<td><%= item.cmdb_status_title %></td>

View file

@ -13,7 +13,7 @@
<tbody>
<% for integration in @integrations: %>
<tr data-key="<%= integration.key %>">
<td>
<td class="noTruncate">
<% if !integration.state.current(): %>
<%- @Icon('status', 'inactive inline') %>
<% else: %>