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>
|
<template>
|
||||||
<AbstractForm
|
<AbstractForm
|
||||||
|
v-if="panel"
|
||||||
v-bind="{
|
v-bind="{
|
||||||
id: panel.id + '-form',
|
id: panel.id + '-form',
|
||||||
validation,
|
validation,
|
||||||
|
|
|
@ -31,6 +31,8 @@ import { validationMixin } from 'vuelidate'
|
||||||
export default {
|
export default {
|
||||||
name: 'ConfigPanels',
|
name: 'ConfigPanels',
|
||||||
|
|
||||||
|
inheritAttrs: false,
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
RoutableTabs: () => import('@/components/RoutableTabs.vue'),
|
RoutableTabs: () => import('@/components/RoutableTabs.vue'),
|
||||||
},
|
},
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
:limit="limit"
|
:limit="limit"
|
||||||
remove-on-delete
|
remove-on-delete
|
||||||
:state="state"
|
:state="state"
|
||||||
|
:options="options"
|
||||||
v-on="$listeners"
|
v-on="$listeners"
|
||||||
@blur="$parent.$emit('touch', name)"
|
@blur="$parent.$emit('touch', name)"
|
||||||
/>
|
/>
|
||||||
|
@ -30,6 +31,7 @@ export default {
|
||||||
required: { type: Boolean, default: false },
|
required: { type: Boolean, default: false },
|
||||||
state: { type: Boolean, default: null },
|
state: { type: Boolean, default: null },
|
||||||
name: { type: String, default: null },
|
name: { type: String, default: null },
|
||||||
|
options: { type: Array, default: null },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -95,6 +95,8 @@
|
||||||
export default {
|
export default {
|
||||||
name: 'TagsSelectizeItem',
|
name: 'TagsSelectizeItem',
|
||||||
|
|
||||||
|
inheritAttrs: false,
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
value: { type: Array, required: true },
|
value: { type: Array, required: true },
|
||||||
options: { type: Array, required: true },
|
options: { type: Array, required: true },
|
||||||
|
|
|
@ -164,15 +164,6 @@
|
||||||
</BCard>
|
</BCard>
|
||||||
</CardDeckFeed>
|
</CardDeckFeed>
|
||||||
|
|
||||||
<app-catalog-details
|
|
||||||
v-if="selectedApp"
|
|
||||||
id="modal-app-info"
|
|
||||||
:app-id="selectedApp"
|
|
||||||
:antifeatures="antifeatures"
|
|
||||||
@ok="onInstallClick(selectedApp)"
|
|
||||||
@hide="selectedApp = undefined"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<template #bot>
|
<template #bot>
|
||||||
<!-- INSTALL CUSTOM APP -->
|
<!-- INSTALL CUSTOM APP -->
|
||||||
<CardForm
|
<CardForm
|
||||||
|
@ -484,7 +475,7 @@ export default {
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
&:hover {
|
&:hover {
|
||||||
color: color-contrast($dark);
|
color: $white;
|
||||||
background-color: $dark;
|
background-color: $dark;
|
||||||
border-color: $dark;
|
border-color: $dark;
|
||||||
}
|
}
|
||||||
|
|
|
@ -243,7 +243,7 @@ export default {
|
||||||
name: undefined,
|
name: undefined,
|
||||||
form: undefined,
|
form: undefined,
|
||||||
fields: undefined,
|
fields: undefined,
|
||||||
validations: null,
|
validations: {},
|
||||||
errors: undefined,
|
errors: undefined,
|
||||||
serverError: '',
|
serverError: '',
|
||||||
force: false,
|
force: false,
|
||||||
|
|
|
@ -99,7 +99,7 @@
|
||||||
<template v-for="(userName, index) in activeUserGroups">
|
<template v-for="(userName, index) in activeUserGroups">
|
||||||
<BRow :key="userName">
|
<BRow :key="userName">
|
||||||
<BCol md="3" lg="2">
|
<BCol md="3" lg="2">
|
||||||
<icon iname="user" /> <strong>{{ userName }}</strong>
|
<YIcon iname="user" /> <strong>{{ userName }}</strong>
|
||||||
</BCol>
|
</BCol>
|
||||||
|
|
||||||
<BCol>
|
<BCol>
|
||||||
|
|
Loading…
Add table
Reference in a new issue