Change topic label on "My Activities" page
Resolves MS-901 #complete
This commit is contained in:
parent
f44bf5cd85
commit
3cdbfa8abf
|
|
@ -7,7 +7,7 @@
|
|||
v-if="module[property]?.length"
|
||||
:key="module.id"
|
||||
>
|
||||
<h4 class="heading-4">Thema: {{ topic.title }} - {{ module.metaTitle }}: {{ module.title }}</h4>
|
||||
<h4 class="heading-4">{{ topic.title }}: {{ module.title }} - {{ module.metaTitle }}</h4>
|
||||
<activity-entry
|
||||
:to="`/${path(item)}`"
|
||||
v-for="item in module[property]"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
v-if="instrument[property].length"
|
||||
:key="instrument.id"
|
||||
>
|
||||
<h4 class="heading-4">{{ instrument.title }}</h4>
|
||||
<h4 class="heading-4">{{ flavor.textInstrument }}: {{ instrument.title }}</h4>
|
||||
<activity-entry
|
||||
:to="`/${instrument.path}`"
|
||||
v-for="item in instrument[property]"
|
||||
|
|
@ -22,6 +22,7 @@
|
|||
import { InstrumentActivityProperty } from '@/@types';
|
||||
import { InstrumentNode } from '@/__generated__/graphql';
|
||||
import ActivityEntry from '@/components/profile/ActivityEntry.vue';
|
||||
import flavor from '@/helpers/app-flavor';
|
||||
|
||||
export interface Props {
|
||||
instruments: InstrumentNode[];
|
||||
|
|
|
|||
Loading…
Reference in New Issue