Skip to content

Commit 55e8e68

Browse files
kushthedudeabhinavk96
authored andcommitted
fix: Fixing Overlapping Components in Manage Events (#3241)
* Fixing Overlapping Components * Fixing Overlapping Components
1 parent f29899b commit 55e8e68

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

app/controllers/events/list.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export default class extends Controller.extend(EmberTableControllerMixin) {
1010
{
1111
name : 'Name',
1212
valuePath : 'name',
13+
width : 150,
1314
isSortable : true,
1415
extraValuePaths : ['startsAt', 'endAt'],
1516
headerComponent : 'tables/headers/sort',
@@ -34,6 +35,7 @@ export default class extends Controller.extend(EmberTableControllerMixin) {
3435
{
3536
name : 'Roles',
3637
valuePath : 'roles',
38+
width : 180,
3739
cellComponent : 'ui-table/cell/cell-roles',
3840
isSortable : false
3941
},
@@ -60,6 +62,7 @@ export default class extends Controller.extend(EmberTableControllerMixin) {
6062
{
6163
name : 'Public URL',
6264
valuePath : 'url',
65+
width : 250,
6366
cellComponent : 'ui-table/cell/cell-link',
6467
isSortable : false
6568
}
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
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>

0 commit comments

Comments
 (0)