mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
small corrections
This commit is contained in:
parent
604c7f385e
commit
8fa2f0e7ad
@ -30,10 +30,10 @@
|
|||||||
ref="castPerson">
|
ref="castPerson">
|
||||||
</on-the-fly-person>
|
</on-the-fly-person>
|
||||||
<div v-if="hasResourceComment">
|
<div v-if="hasResourceComment">
|
||||||
<h3>{{ $t('onthefly.resource_comment_title') }}</h3>
|
<h3>{{ $t('onthefly.resource_comment_title') }}</h3>
|
||||||
<blockquote class="chill-user-quote">
|
<blockquote class="chill-user-quote">
|
||||||
{{ parent.comment }}
|
{{ parent.comment }}
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -45,10 +45,10 @@
|
|||||||
ref="castThirdparty">
|
ref="castThirdparty">
|
||||||
</on-the-fly-thirdparty>
|
</on-the-fly-thirdparty>
|
||||||
<div v-if="hasResourceComment">
|
<div v-if="hasResourceComment">
|
||||||
<h3>{{ $t('onthefly.resource_comment_title') }}</h3>
|
<h3>{{ $t('onthefly.resource_comment_title') }}</h3>
|
||||||
<blockquote class="chill-user-quote">
|
<blockquote class="chill-user-quote">
|
||||||
{{ parent.comment }}
|
{{ parent.comment }}
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -114,11 +114,11 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
hasResourceComment() {
|
hasResourceComment() {
|
||||||
//console.log('hasResourceComment', this.parent);
|
//console.log('hasResourceComment', this.parent);
|
||||||
return (typeof this.parent !== 'undefined' && this.parent !== null)
|
return (typeof this.parent !== 'undefined' && this.parent !== null)
|
||||||
&& this.action === 'show'
|
&& this.action === 'show'
|
||||||
&& this.parent.type === 'accompanying_period_resource'
|
&& this.parent.type === 'accompanying_period_resource'
|
||||||
&& (this.parent.comment !== null && this.parent.comment !== '')
|
&& (this.parent.comment !== null && this.parent.comment !== '')
|
||||||
;
|
;
|
||||||
},
|
},
|
||||||
classAction() {
|
classAction() {
|
||||||
switch (this.action) {
|
switch (this.action) {
|
||||||
|
@ -19,8 +19,8 @@ const ontheflyMessages = {
|
|||||||
},
|
},
|
||||||
addContact: {
|
addContact: {
|
||||||
title: "Créer un contact pour {q}"
|
title: "Créer un contact pour {q}"
|
||||||
}
|
},
|
||||||
resource_comment_title: "Un commentaire est associé à cet interlocuteur"
|
resource_comment_title: "Un commentaire est associé à cet interlocuteur",
|
||||||
addContact: {
|
addContact: {
|
||||||
title: "Créer un contact pour {q}"
|
title: "Créer un contact pour {q}"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user