diff --git a/plugins/chunter-resources/src/components/Activity.svelte b/plugins/chunter-resources/src/components/Activity.svelte new file mode 100644 index 0000000000..3818500729 --- /dev/null +++ b/plugins/chunter-resources/src/components/Activity.svelte @@ -0,0 +1,56 @@ + + + + +
+ +
+
+{#if backlinks && backlinks.length > 0} +
+ {#each backlinks as backlink} + + {/each} +
+{/if} + + + diff --git a/plugins/chunter-resources/src/index.ts b/plugins/chunter-resources/src/index.ts index 456dfa37a3..d3f67efcbc 100644 --- a/plugins/chunter-resources/src/index.ts +++ b/plugins/chunter-resources/src/index.ts @@ -15,10 +15,12 @@ import CreateChannel from './components/CreateChannel.svelte' import ChannelView from './components/ChannelView.svelte' +import Activity from './components/Activity.svelte' export default async () => ({ component: { CreateChannel, - ChannelView + ChannelView, + Activity } }) diff --git a/plugins/chunter-resources/src/plugin.ts b/plugins/chunter-resources/src/plugin.ts index 789a012934..e7dda7c544 100644 --- a/plugins/chunter-resources/src/plugin.ts +++ b/plugins/chunter-resources/src/plugin.ts @@ -24,7 +24,7 @@ import chunter, { chunterId } from '@anticrm/chunter' export default mergeIds(chunterId, chunter, { component: { CreateChannel: '' as AnyComponent, - ChannelView: '' as AnyComponent + ChannelView: '' as AnyComponent, }, class: { Channel: '' as Ref>, diff --git a/plugins/recruit-resources/src/components/EditCandidate.svelte b/plugins/recruit-resources/src/components/EditCandidate.svelte index f1a0e23598..fd8976c4b7 100644 --- a/plugins/recruit-resources/src/components/EditCandidate.svelte +++ b/plugins/recruit-resources/src/components/EditCandidate.svelte @@ -15,31 +15,17 @@