diff options
Diffstat (limited to 'src/main/resources/templates/groupField.html')
-rw-r--r-- | src/main/resources/templates/groupField.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/templates/groupField.html b/src/main/resources/templates/groupField.html index 8c3ce4f..19434de 100644 --- a/src/main/resources/templates/groupField.html +++ b/src/main/resources/templates/groupField.html @@ -6,12 +6,12 @@ <td> {{ group.name }} </td> - <td class="bwlp-group-status"> + <td class="bwlp-group-status" style="white-space: nowrap"> {{ group.freeCount }} {{ 'GROUP_SELECTION.AVAILABLE' | translate }} ({{ group.offlineCount }} offline) </td> <td style="width: 200px"> <div ng-if="group.password" class="bwlp-password"> - <span ng-if="data.id !== group.id">{{ 'GROUP_SELECTION.PASSWORD_PROTECTED' | translate }}</span> + <span ng-if="data.id !== group.id" style="white-space: nowrap">{{ 'GROUP_SELECTION.PASSWORD_PROTECTED' | translate }}</span> <input ng-if="data.id === group.id" ng-model="data.password" type="password" placeholder="Password" class="bwlp-password-input" required> </div> |