Fix reference bug
This commit is contained in:
parent
a1f06f130e
commit
10d28c73f4
|
|
@ -66,7 +66,7 @@
|
|||
v-if="selectedCategory === BOOKMARKS"
|
||||
v-slot="{ item }"
|
||||
>
|
||||
<bookmark :item="item" />
|
||||
<activity-bookmark :item="item" />
|
||||
</instrument-activity-list>
|
||||
<activity-list
|
||||
:topics="bookmarkTopics"
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
v-if="selectedCategory === BOOKMARKS"
|
||||
v-slot="{ item }"
|
||||
>
|
||||
<bookmark :item="item" />
|
||||
<activity-bookmark :item="item" />
|
||||
</activity-list>
|
||||
<activity-list
|
||||
:topics="submissionsTopics"
|
||||
|
|
@ -104,7 +104,7 @@ import { ref, computed } from 'vue';
|
|||
import ActivityList from '@/components/profile/ActivityList.vue';
|
||||
import InstrumentActivityList from '@/components/profile/InstrumentActivityList.vue';
|
||||
import LoadingMessage from '@/components/ui/LoadingMessage.vue';
|
||||
import Bookmark from '@/components/Bookmark.vue';
|
||||
import ActivityBookmark from '@/components/ActivityBookmark.vue';
|
||||
import { TopicNode } from '@/__generated__/graphql';
|
||||
|
||||
const HIGHLIGHTS = 'highlights';
|
||||
|
|
|
|||
Loading…
Reference in New Issue