mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
lint
This commit is contained in:
parent
85a4178549
commit
fea5730a29
2 changed files with 8 additions and 8 deletions
|
@ -20,8 +20,8 @@
|
|||
|
||||
<BCollapse id="collapse-domain" :visible.sync="domainIsVisible">
|
||||
<p class="mt-2 alert alert-info">
|
||||
<YIcon iname='info-circle' />
|
||||
<span class='pl-1' v-html="$t('domain.add.from_registrar_desc')" />
|
||||
<YIcon iname="info-circle" />
|
||||
<span class="pl-1" v-html="$t('domain.add.from_registrar_desc')" />
|
||||
</p>
|
||||
|
||||
<FormField
|
||||
|
@ -44,7 +44,7 @@
|
|||
<BCollapse id="collapse-dynDomain" :visible.sync="dynDomainIsVisible">
|
||||
<p class="mt-2 alert alert-info">
|
||||
<YIcon iname="info-circle" />
|
||||
<span class='pl-1' v-html="$t('domain.add.from_yunohost_desc')" />
|
||||
<span class="pl-1" v-html="$t('domain.add.from_yunohost_desc')" />
|
||||
</p>
|
||||
|
||||
<FormField v-bind="fields.dynDomain" :validation="$v.form.dynDomain" class="mt-3">
|
||||
|
@ -78,8 +78,8 @@
|
|||
|
||||
<BCollapse id="collapse-localDomain" :visible.sync="localDomainIsVisible">
|
||||
<p class="mt-2 alert alert-info">
|
||||
<YIcon iname='info-circle' />
|
||||
<span class='pl-1' v-html="$t('domain.add.from_local_desc')" />
|
||||
<YIcon iname="info-circle" />
|
||||
<span class="pl-1" v-html="$t('domain.add.from_local_desc')" />
|
||||
</p>
|
||||
|
||||
<FormField v-bind="fields.localDomain" :validation="$v.form.localDomain" class="mt-3">
|
||||
|
@ -133,7 +133,7 @@ export default {
|
|||
label: this.$i18n.t('domain_name'),
|
||||
props: {
|
||||
id: 'dyn-domain',
|
||||
placeholder: this.$i18n.t('placeholder.domain').split(".")[0],
|
||||
placeholder: this.$i18n.t('placeholder.domain').split('.')[0],
|
||||
type: 'domain',
|
||||
choices: ['nohost.me', 'noho.st', 'ynh.fr']
|
||||
}
|
||||
|
@ -162,7 +162,7 @@ export default {
|
|||
label: this.$i18n.t('domain_name'),
|
||||
props: {
|
||||
id: 'dyn-domain',
|
||||
placeholder: this.$i18n.t('placeholder.domain').split(".")[0],
|
||||
placeholder: this.$i18n.t('placeholder.domain').split('.')[0],
|
||||
type: 'domain',
|
||||
choices: ['local', 'test']
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
<!-- REPORT ITEM -->
|
||||
<YListGroupItem
|
||||
v-for="(item, i) in report.items" :key="i"
|
||||
:variant="item.variant" :Icon="item.Icon" :faded="item.ignored"
|
||||
:variant="item.variant" :icon="item.Icon" :faded="item.ignored"
|
||||
>
|
||||
<div class="item-button d-flex align-items-center">
|
||||
<p class="mb-0 mr-2" v-html="item.summary" />
|
||||
|
|
Loading…
Add table
Reference in a new issue