diff --git a/client/src/components/content-blocks/ContentComponent.vue b/client/src/components/content-blocks/ContentComponent.vue index ea18ffc4..f83a4dcf 100644 --- a/client/src/components/content-blocks/ContentComponent.vue +++ b/client/src/components/content-blocks/ContentComponent.vue @@ -27,6 +27,7 @@ import LinkBlock from '@/components/content-blocks/LinkBlock'; import DocumentBlock from '@/components/content-blocks/DocumentBlock'; import InfogramBlock from '@/components/content-blocks/InfogramBlock'; + import ThinglinkBlock from '@/components/content-blocks/ThinglinkBlock'; import GeniallyBlock from '@/components/content-blocks/GeniallyBlock'; import SubtitleBlock from '@/components/content-blocks/SubtitleBlock'; import ContentListBlock from '@/components/content-blocks/ContentListBlock'; @@ -56,6 +57,7 @@ 'subtitle': SubtitleBlock, 'content_list': ContentListBlock, 'module_room_slug': ModuleRoomSlug, + 'thinglink_block': ThinglinkBlock, Survey, Solution, Assignment, diff --git a/client/src/pages/instrument.vue b/client/src/pages/instrument.vue index 009a4b0e..4d05d476 100644 --- a/client/src/pages/instrument.vue +++ b/client/src/pages/instrument.vue @@ -24,6 +24,7 @@ import SectionTitleBlock from '@/components/content-blocks/SectionTitleBlock'; import SubtitleBlock from '@/components/content-blocks/SubtitleBlock'; import GeniallyBlock from '@/components/content-blocks/GeniallyBlock'; + import ThinglinkBlock from '@/components/content-blocks/ThinglinkBlock'; export default { apollo: { @@ -48,7 +49,8 @@ 'document_block': DocumentBlock, 'section_title': SectionTitleBlock, 'subtitle': SubtitleBlock, - 'genially_block': GeniallyBlock + 'genially_block': GeniallyBlock, + 'thinglink_block': ThinglinkBlock }, data() {