Browse Source
Fix hardcoded message in app details view
pull/10071/head
Kevin Ndung'u
7 years ago
No known key found for this signature in database
GPG Key ID: 6F939DF9A26D46D7
4 changed files with
10 additions and
5 deletions
-
settings/css/settings.scss
-
settings/js/settings-vue.js
-
settings/js/settings-vue.js.map
-
settings/src/components/appDetails.vue
|
|
|
@ -840,6 +840,11 @@ span.version { |
|
|
|
} |
|
|
|
.actions { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
|
|
|
|
.app-groups{ |
|
|
|
padding: 5px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ -1499,7 +1504,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { |
|
|
|
line-height: 1.3em; |
|
|
|
max-height: 2.6em; |
|
|
|
overflow : hidden; |
|
|
|
/* not supported by all browsers |
|
|
|
/* not supported by all browsers |
|
|
|
so we keep the overflow hidden |
|
|
|
as a fallback */ |
|
|
|
text-overflow: ellipsis; |
|
|
|
|
|
|
|
@ -55,8 +55,8 @@ |
|
|
|
<div class="app-groups"> |
|
|
|
<div class="groups-enable" v-if="app.active && canLimitToGroups(app)"> |
|
|
|
<input type="checkbox" :value="app.id" v-model="groupCheckedAppsData" v-on:change="setGroupLimit" class="groups-enable__checkbox checkbox" :id="prefix('groups_enable', app.id)"> |
|
|
|
<label :for="prefix('groups_enable', app.id)">Auf Gruppen beschränken</label> |
|
|
|
<input type="hidden" class="group_select" title="Alle" value=""> |
|
|
|
<label :for="prefix('groups_enable', app.id)">{{ t('settings', 'Limit to groups') }}</label> |
|
|
|
<input type="hidden" class="group_select" :title="t('settings', 'All')" value=""> |
|
|
|
<multiselect v-if="isLimitedToGroups(app)" :options="groups" :value="appGroups" @select="addGroupLimitation" @remove="removeGroupLimitation" :options-limit="5" |
|
|
|
:placeholder="t('settings', 'Limit app usage to groups')" |
|
|
|
label="name" track-by="id" class="multiselect-vue" |
|
|
|
|