mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fix: misc
This commit is contained in:
parent
8fe6a2aef4
commit
791a9fe9c7
7 changed files with 10 additions and 12 deletions
|
@ -1,5 +1,6 @@
|
|||
<template>
|
||||
<AbstractForm
|
||||
v-if="panel"
|
||||
v-bind="{
|
||||
id: panel.id + '-form',
|
||||
validation,
|
||||
|
|
|
@ -31,6 +31,8 @@ import { validationMixin } from 'vuelidate'
|
|||
export default {
|
||||
name: 'ConfigPanels',
|
||||
|
||||
inheritAttrs: false,
|
||||
|
||||
components: {
|
||||
RoutableTabs: () => import('@/components/RoutableTabs.vue'),
|
||||
},
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
:limit="limit"
|
||||
remove-on-delete
|
||||
:state="state"
|
||||
:options="options"
|
||||
v-on="$listeners"
|
||||
@blur="$parent.$emit('touch', name)"
|
||||
/>
|
||||
|
@ -30,6 +31,7 @@ export default {
|
|||
required: { type: Boolean, default: false },
|
||||
state: { type: Boolean, default: null },
|
||||
name: { type: String, default: null },
|
||||
options: { type: Array, default: null },
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -95,6 +95,8 @@
|
|||
export default {
|
||||
name: 'TagsSelectizeItem',
|
||||
|
||||
inheritAttrs: false,
|
||||
|
||||
props: {
|
||||
value: { type: Array, required: true },
|
||||
options: { type: Array, required: true },
|
||||
|
|
|
@ -164,15 +164,6 @@
|
|||
</BCard>
|
||||
</CardDeckFeed>
|
||||
|
||||
<app-catalog-details
|
||||
v-if="selectedApp"
|
||||
id="modal-app-info"
|
||||
:app-id="selectedApp"
|
||||
:antifeatures="antifeatures"
|
||||
@ok="onInstallClick(selectedApp)"
|
||||
@hide="selectedApp = undefined"
|
||||
/>
|
||||
|
||||
<template #bot>
|
||||
<!-- INSTALL CUSTOM APP -->
|
||||
<CardForm
|
||||
|
@ -484,7 +475,7 @@ export default {
|
|||
|
||||
.card {
|
||||
&:hover {
|
||||
color: color-contrast($dark);
|
||||
color: $white;
|
||||
background-color: $dark;
|
||||
border-color: $dark;
|
||||
}
|
||||
|
|
|
@ -243,7 +243,7 @@ export default {
|
|||
name: undefined,
|
||||
form: undefined,
|
||||
fields: undefined,
|
||||
validations: null,
|
||||
validations: {},
|
||||
errors: undefined,
|
||||
serverError: '',
|
||||
force: false,
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
<template v-for="(userName, index) in activeUserGroups">
|
||||
<BRow :key="userName">
|
||||
<BCol md="3" lg="2">
|
||||
<icon iname="user" /> <strong>{{ userName }}</strong>
|
||||
<YIcon iname="user" /> <strong>{{ userName }}</strong>
|
||||
</BCol>
|
||||
|
||||
<BCol>
|
||||
|
|
Loading…
Add table
Reference in a new issue