Change topic label on "My Activities" page

Resolves MS-901 #complete
This commit is contained in:
Ramon Wenger 2024-03-11 09:38:47 +01:00
parent f44bf5cd85
commit 3cdbfa8abf
2 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@
v-if="module[property]?.length" v-if="module[property]?.length"
:key="module.id" :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 <activity-entry
:to="`/${path(item)}`" :to="`/${path(item)}`"
v-for="item in module[property]" v-for="item in module[property]"

View File

@ -6,7 +6,7 @@
v-if="instrument[property].length" v-if="instrument[property].length"
:key="instrument.id" :key="instrument.id"
> >
<h4 class="heading-4">{{ instrument.title }}</h4> <h4 class="heading-4">{{ flavor.textInstrument }}: {{ instrument.title }}</h4>
<activity-entry <activity-entry
:to="`/${instrument.path}`" :to="`/${instrument.path}`"
v-for="item in instrument[property]" v-for="item in instrument[property]"
@ -22,6 +22,7 @@
import { InstrumentActivityProperty } from '@/@types'; import { InstrumentActivityProperty } from '@/@types';
import { InstrumentNode } from '@/__generated__/graphql'; import { InstrumentNode } from '@/__generated__/graphql';
import ActivityEntry from '@/components/profile/ActivityEntry.vue'; import ActivityEntry from '@/components/profile/ActivityEntry.vue';
import flavor from '@/helpers/app-flavor';
export interface Props { export interface Props {
instruments: InstrumentNode[]; instruments: InstrumentNode[];