Skip to content
Snippets Groups Projects

Resolve "Add links to group/person detail pages in Core"

Merged Julian requested to merge 313-add-links-to-group-person-detail-pages-in-core into master
All threads resolved!
3 files
+ 23
2
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -288,6 +288,25 @@ export default {
<span v-t="'actions.back_to_overview'" />
</v-tooltip>
{{ item.person.fullName }}
<v-spacer />
<v-tooltip bottom>
<template #activator="{ on, attrs }">
<v-btn
v-bind="attrs"
v-on="on"
icon
:to="{
name: 'core.personById',
params: {
id: item.person.id,
},
}"
>
<v-icon>mdi-open-in-new</v-icon>
</v-btn>
</template>
{{ $t("actions.open_person_page", item.person) }}
</v-tooltip>
</v-card-title>
<v-card-text>
<absence-reason-group-select
Loading