File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export default class extends Controller.extend(EmberTableControllerMixin) {
10
10
{
11
11
name : 'Name' ,
12
12
valuePath : 'name' ,
13
+ width : 150 ,
13
14
isSortable : true ,
14
15
extraValuePaths : [ 'startsAt' , 'endAt' ] ,
15
16
headerComponent : 'tables/headers/sort' ,
@@ -34,6 +35,7 @@ export default class extends Controller.extend(EmberTableControllerMixin) {
34
35
{
35
36
name : 'Roles' ,
36
37
valuePath : 'roles' ,
38
+ width : 180 ,
37
39
cellComponent : 'ui-table/cell/cell-roles' ,
38
40
isSortable : false
39
41
} ,
@@ -60,6 +62,7 @@ export default class extends Controller.extend(EmberTableControllerMixin) {
60
62
{
61
63
name : 'Public URL' ,
62
64
valuePath : 'url' ,
65
+ width : 250 ,
63
66
cellComponent : 'ui-table/cell/cell-link' ,
64
67
isSortable : false
65
68
}
Original file line number Diff line number Diff line change 1
- <div class =" resize-container" >
2
- <table class =" ui unstackable table" >
3
- {{ yield (hash
4
- api =api
5
- head = (component " ember-thead" api =api )
6
- body = (component " ember-tbody" api =api )
7
- foot = (component " ember-tfoot" api =api )
8
- )}}
9
- </table >
10
- </div >
1
+
2
+ <table class =" ui unstackable table" >
3
+ {{ yield (hash
4
+ api =api
5
+ head = (component " ember-thead" api =api )
6
+ body = (component " ember-tbody" api =api )
7
+ foot = (component " ember-tfoot" api =api )
8
+ )}}
9
+ </table >
You can’t perform that action at this time.
0 commit comments