add static width to ticket create row
to prevent double lines
This commit is contained in:
parent
fdef55a32e
commit
436a4efb15
2 changed files with 3 additions and 3 deletions
|
@ -19,9 +19,9 @@ class App.Ticket extends App.Model
|
|||
{ name: 'escalation_time', display: 'Escalation', type: 'time', null: true, style: 'width: 12%', class: 'escalation', parentClass: 'noTruncate' },
|
||||
{ name: 'article_count', display: 'Article#', style: 'width: 12%' },
|
||||
{ name: 'created_by_id', display: 'Created by', relation: 'User', readonly: 1 },
|
||||
{ name: 'created_at', display: 'Created', type: 'time', style: 'width: 12%', readonly: 1, parentClass: 'noTruncate' },
|
||||
{ name: 'created_at', display: 'Created', type: 'time', style: 'width: 90px', readonly: 1, parentClass: 'noTruncate' },
|
||||
{ name: 'updated_by_id', display: 'Updated by', relation: 'User', readonly: 1 },
|
||||
{ name: 'updated_at', display: 'Updated', type: 'time', style: 'width: 12%', readonly: 1, parentClass: 'noTruncate' },
|
||||
{ name: 'updated_at', display: 'Updated', type: 'time', style: 'width: 90px', readonly: 1, parentClass: 'noTruncate' },
|
||||
]
|
||||
|
||||
uiUrl: ->
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<th <% if item.style: %>style="<%= item.style %>"<% end %>><%- @T( item.display ) %></th>
|
||||
<% end %>
|
||||
<% if @destroy: %>
|
||||
<th class="span2"><%- @T('Delete') %></th>
|
||||
<th><%- @T('Delete') %></th>
|
||||
<% end %>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
Loading…
Reference in a new issue