Skip to content

Commit

Permalink
Fix text wrap for stage filters (#4333)
Browse files Browse the repository at this point in the history
  • Loading branch information
thecalcc authored Sep 28, 2023
1 parent 1dfd2c9 commit 5076408
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/apps/monitoring/views/monitoring-view.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ <h2 class="subnav__page-title sd-flex-no-grow sd-empty" ng-hide="monitoring.sing
<span ng-if="monitoring.singleGroup.type == null" class="stage-group__desk">{{ monitoring.singleGroup.header }}</span>
<span ng-if="monitoring.singleGroup.type == null" class="stage-group__split">/</span>
<div class="dropdown" dropdown>
<button class="dropdown__toggle navbtn navbtn--text-only navbtn--padding-s" dropdown-toggle>{{monitoring.getGroupLabel(monitoring.singleGroup, monitoring.singleGroup.type)}}<span class="dropdown__caret"></span></button>
<button style="text-wrap: nowrap;" class="dropdown__toggle navbtn navbtn--text-only navbtn--padding-s" dropdown-toggle>{{monitoring.getGroupLabel(monitoring.singleGroup, monitoring.singleGroup.type)}}<span class="dropdown__caret"></span></button>
<ul class="dropdown__menu scrollable">
<li><div class="dropdown__menu-label" translate>Stages</div></li>
<li ng-repeat="card in aggregate.cards" ng-class="{active: monitoring.singleGroup}">
Expand Down
1 change: 0 additions & 1 deletion scripts/core/superdesk-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2845,7 +2845,6 @@ declare module 'superdesk-api' {
): string;
};
privileges: {
getOwnPrivileges(): Promise<IUserPrivileges>;
hasPrivilege(privilege: string): boolean;
};
preferences: {
Expand Down

0 comments on commit 5076408

Please sign in to comment.