diff --git a/plugins/activity-assets/src/tsdoc-metadata.json b/plugins/activity-assets/src/tsdoc-metadata.json index 83b5aaf730..1de76b30c9 100644 --- a/plugins/activity-assets/src/tsdoc-metadata.json +++ b/plugins/activity-assets/src/tsdoc-metadata.json @@ -1,11 +1,11 @@ -// This file is read by tools that parse documentation comments conforming to the TSDoc standard. -// It should be published with your NPM package. It should not be tracked by Git. -{ - "tsdocVersion": "0.12", - "toolPackages": [ - { - "packageName": "@microsoft/api-extractor", - "packageVersion": "7.23.0" - } - ] -} +// This file is read by tools that parse documentation comments conforming to the TSDoc standard. +// It should be published with your NPM package. It should not be tracked by Git. +{ + "tsdocVersion": "0.12", + "toolPackages": [ + { + "packageName": "@microsoft/api-extractor", + "packageVersion": "7.23.0" + } + ] +} diff --git a/plugins/contact-resources/src/components/ChannelEditor.svelte b/plugins/contact-resources/src/components/ChannelEditor.svelte index adf816ac2f..56d6a2724b 100644 --- a/plugins/contact-resources/src/components/ChannelEditor.svelte +++ b/plugins/contact-resources/src/components/ChannelEditor.svelte @@ -23,7 +23,8 @@ IconBlueCheck, registerFocus, createFocusManager, - IconArrowRight + IconArrowRight, + IconEdit } from '@anticrm/ui' import IconCopy from './icons/Copy.svelte' import { FocusHandler } from '@anticrm/ui' @@ -31,8 +32,8 @@ export let value: string = '' export let placeholder: IntlString - export let editable: boolean = false - export let integration: boolean = false + export let editable: boolean | undefined = undefined + export let openable: boolean = false const dispatch = createEventDispatcher() let input: HTMLInputElement @@ -74,7 +75,7 @@ -{#if editable} +{#if editable && editable === true}
- {#if integration} + {#if editable !== undefined}