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"
|
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]"
|
||||||
|
|
|
||||||
|
|
@ -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[];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue