Hide contact box if learning_mentor is disabled
This commit is contained in:
parent
c11e4d1105
commit
5850321776
|
|
@ -242,7 +242,13 @@ watch(
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<DocumentSection v-if="showDocumentSection" :circle="circle" />
|
<DocumentSection v-if="showDocumentSection" :circle="circle" />
|
||||||
<div v-if="!props.readonly" class="expert mt-8 border p-6">
|
<div
|
||||||
|
v-if="
|
||||||
|
!props.readonly &&
|
||||||
|
lpQueryResult.course.value?.configuration.enable_learning_mentor
|
||||||
|
"
|
||||||
|
class="expert mt-8 border p-6"
|
||||||
|
>
|
||||||
<h3 class="text-blue-dark">{{ $t("circlePage.gotQuestions") }}</h3>
|
<h3 class="text-blue-dark">{{ $t("circlePage.gotQuestions") }}</h3>
|
||||||
<div
|
<div
|
||||||
class="mt-4 leading-relaxed"
|
class="mt-4 leading-relaxed"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue