add private email to detailHeader

This commit is contained in:
ma0068
2026-07-02 16:46:09 +02:00
parent 6d23f2b9fa
commit c194e94b5c
2 changed files with 27 additions and 0 deletions
@@ -460,6 +460,13 @@ export default {
<span v-else>
<pv-skeleton width="10rem"></pv-skeleton>
</span>
<strong class="text-muted"> | {{$p.t('ui', 'private')}} </strong>
<span v-if="!isLoading">
<a :href="'mailto:'+headerData[0]?.mail_privat">{{headerData[0].mail_privat}}</a>
</span>
<span v-else>
<pv-skeleton width="10rem"></pv-skeleton>
</span>
<strong class="text-muted"> | Status </strong>
<span v-if="noCurrentStatus">
<strong class="text-danger">{{$p.t('lehre', 'textNoStatusInSem', { sem: currentSemester}) }}</strong>
+20
View File
@@ -58397,6 +58397,26 @@ I have been informed that I am under no obligation to consent to the transmissio
)
)
),
array(
'app' => 'core',
'category' => 'ui',
'phrase' => 'private',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
'text' => 'Privat',
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => 'private',
'description' => '',
'insertvon' => 'system'
)
)
),
);