diff --git a/packages/ui/src/components/Scroller.svelte b/packages/ui/src/components/Scroller.svelte
index fd0d691aed..dd3922b406 100644
--- a/packages/ui/src/components/Scroller.svelte
+++ b/packages/ui/src/components/Scroller.svelte
@@ -13,12 +13,12 @@
// limitations under the License.
-->
@@ -348,8 +346,8 @@
: 'row'}
style:height={contentDirection === 'vertical-reverse' ? 'max-content' : noStretch ? 'auto' : '100%'}
use:resizeObserver={(element) => {
- boxHeight = element.clientHeight
- boxWidth = element.clientWidth
+ checkAutoScroll()
+ checkFade()
}}
on:dragover
on:drop
diff --git a/plugins/contact-resources/src/components/ChannelEditor.svelte b/plugins/contact-resources/src/components/ChannelEditor.svelte
index fa8f4e83e2..95cc397fe5 100644
--- a/plugins/contact-resources/src/components/ChannelEditor.svelte
+++ b/plugins/contact-resources/src/components/ChannelEditor.svelte
@@ -24,7 +24,6 @@
IconArrowRight,
IconBlueCheck,
IconClose,
- IconEdit,
registerFocus
} from '@hcengineering/ui'
import { afterUpdate, createEventDispatcher, onMount } from 'svelte'
@@ -89,7 +88,7 @@
-{#if editable && editable === true}
+{#if editable}
-
{#if integration === undefined}
@@ -250,7 +249,7 @@
{#if selectable}
-
{selected.size} messages selected
+
{selected.size}
diff --git a/plugins/telegram-resources/src/plugin.ts b/plugins/telegram-resources/src/plugin.ts
index de9db7af18..bbfb41c0a0 100644
--- a/plugins/telegram-resources/src/plugin.ts
+++ b/plugins/telegram-resources/src/plugin.ts
@@ -34,6 +34,7 @@ export default mergeIds(telegramId, telegram, {
Cancel: '' as IntlString,
Share: '' as IntlString,
PublishSelected: '' as IntlString,
- YouAnd: '' as IntlString
+ YouAnd: '' as IntlString,
+ MessagesSelected: '' as IntlString
}
})