Commit e8fffdbc4d2b6b921ce311c2399b1a16dcbf38c4
Committed by
GitHub
1 parent
3881dc84
Fix manage dashboard states for Safari (#2602)
Showing
1 changed file
with
2 additions
and
2 deletions
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 | limitations under the License. |
16 | 16 | |
17 | 17 | --> |
18 | -<md-dialog aria-label="{{ 'dashboard.manage-states' | translate }}" style="width: 620px;"> | |
18 | +<md-dialog aria-label="{{ 'dashboard.manage-states' | translate }}" style="min-width: 600px;"> | |
19 | 19 | <form name="theForm" ng-submit="vm.save()"> |
20 | 20 | <md-toolbar> |
21 | 21 | <div class="md-toolbar-tools"> |
... | ... | @@ -72,7 +72,7 @@ |
72 | 72 | </md-toolbar> |
73 | 73 | <md-table-container> |
74 | 74 | <table md-table> |
75 | - <thead fix-head md-head md-order="vm.query.order" md-on-reorder="vm.onReorder"> | |
75 | + <thead md-head md-order="vm.query.order" md-on-reorder="vm.onReorder"> | |
76 | 76 | <tr md-row> |
77 | 77 | <th md-column md-order-by="name"><span translate>dashboard.state-name</span></th> |
78 | 78 | <th md-column md-order-by="id"><span translate>dashboard.state-id</span></th> | ... | ... |