We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a658773 commit f779c80Copy full SHA for f779c80
src/components/Navigator/NavigatorCardItem.vue
@@ -197,7 +197,7 @@ export default {
197
},
198
computed: {
199
isGroupMarker: ({ item: { type } }) => type === TopicTypes.groupMarker,
200
- isParent: ({ item, isGroupMarker }) => !!item.childUIDs.length && !isGroupMarker,
+ isParent: ({ item, isGroupMarker }) => !!item.childUIDs?.length && !isGroupMarker,
201
parentLabel: ({ item }) => `label-parent-${item.uid}`,
202
siblingsLabel: ({ item }) => `label-${item.uid}`,
203
usageLabel: ({ item }) => `usage-${item.uid}`,
0 commit comments