Fixes #3262 - Remove dots next to icons in tables
This commit is contained in:
parent
0b3b731321
commit
6b370aa45b
6 changed files with 6 additions and 2 deletions
|
@ -310,6 +310,7 @@ class Download extends App.Controller
|
|||
attribute =
|
||||
name: 'icon'
|
||||
display: ''
|
||||
parentClass: 'noTruncate'
|
||||
translation: false
|
||||
width: '28px'
|
||||
displayWidth: 28
|
||||
|
|
|
@ -1184,6 +1184,7 @@ class Table extends App.Controller
|
|||
attribute =
|
||||
name: 'icon'
|
||||
display: ''
|
||||
parentClass: 'noTruncate'
|
||||
translation: false
|
||||
width: '28px'
|
||||
displayWidth: 28
|
||||
|
|
|
@ -44,6 +44,7 @@ class App.AnswerList extends App.Controller
|
|||
attribute =
|
||||
name: 'icon'
|
||||
display: ''
|
||||
parentClass: 'noTruncate'
|
||||
translation: false
|
||||
width: '28px'
|
||||
displayWidth:28
|
||||
|
|
|
@ -53,6 +53,7 @@ class App.TicketList extends App.Controller
|
|||
attribute =
|
||||
name: 'icon'
|
||||
display: ''
|
||||
parentClass: 'noTruncate'
|
||||
translation: false
|
||||
width: '28px'
|
||||
displayWidth: 28
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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: %>
|
||||
|
|
Loading…
Reference in a new issue