Skip to content

Commit 076cd69

Browse files
committed
fix wrapping words
1 parent e757699 commit 076cd69

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/assets/js/scope.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ class Scope {
2828
this.isStaff = isStaff;
2929
this.isNdaed = 'nda' in (mozilliansorgGroups || {});
3030
this.isLdap = Boolean(ldapGroups);
31-
this.isGroupCreator = 'group_creators' in (mozilliansorgGroups || {});
31+
this.isGroupCreator =
32+
'group_creators' in (mozilliansorgGroups || {}) ||
33+
'group_admins' in (mozilliansorgGroups || {});
3234
}
3335
}
3436

src/components/ui/IconBlock.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export default {
4949
margin-left: 1em;
5050
position: relative;
5151
break-inside: avoid;
52+
word-break: break-word;
5253
}
5354
.icon-block__heading {
5455
font-size: 0.9em;

src/components/ui/Tag.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export default {
3838
display: inline-block;
3939
vertical-align: top;
4040
margin: 0 0.5em 0.5em 0;
41-
white-space: nowrap;
4241
padding: 1.1em;
4342
background-color: var(--gray-10);
4443
border-radius: 2em;

0 commit comments

Comments
 (0)