diff --git a/packages/presentation/src/components/ObjectPopup.svelte b/packages/presentation/src/components/ObjectPopup.svelte
index 0f5102c525..ba7743e3c6 100644
--- a/packages/presentation/src/components/ObjectPopup.svelte
+++ b/packages/presentation/src/components/ObjectPopup.svelte
@@ -27,7 +27,7 @@
showPopup,
Tooltip
} from '@anticrm/ui'
- import { createEventDispatcher } from 'svelte'
+ import { createEventDispatcher, afterUpdate } from 'svelte'
import presentation from '..'
import { createQuery, getClient } from '../utils'
@@ -156,20 +156,23 @@
function toAny (obj: any): any {
return obj
}
+
+ afterUpdate(() => dispatch('changeContent'))
diff --git a/plugins/tracker-resources/src/components/CreateIssue.svelte b/plugins/tracker-resources/src/components/CreateIssue.svelte
index cb9179ab81..adc895b5e3 100644
--- a/plugins/tracker-resources/src/components/CreateIssue.svelte
+++ b/plugins/tracker-resources/src/components/CreateIssue.svelte
@@ -303,7 +303,6 @@
value={object}
size="small"
kind="no-border"
- tooltipFill={false}
on:change={({ detail }) => (currentAssignee = detail)}
/>
{#if value}
-
- handleAssigneeChanged(detail)}
- />
-
+ handleAssigneeChanged(detail)}
+ />
{/if}
diff --git a/plugins/tracker-resources/src/components/issues/AssigneePresenter.svelte b/plugins/tracker-resources/src/components/issues/AssigneePresenter.svelte
index bcc0ef80f7..46c93a8d06 100644
--- a/plugins/tracker-resources/src/components/issues/AssigneePresenter.svelte
+++ b/plugins/tracker-resources/src/components/issues/AssigneePresenter.svelte
@@ -97,7 +97,7 @@
this={presenter.presenter}
{value}
{defaultName}
- avatarSize={'tiny'}
+ avatarSize={'x-small'}
isInteractive={true}
shouldShowPlaceholder={true}
shouldShowName={shouldShowLabel}
diff --git a/plugins/tracker-resources/src/components/issues/IssuePreview.svelte b/plugins/tracker-resources/src/components/issues/IssuePreview.svelte
index f435944dec..5e9f58fca6 100644
--- a/plugins/tracker-resources/src/components/issues/IssuePreview.svelte
+++ b/plugins/tracker-resources/src/components/issues/IssuePreview.svelte
@@ -85,7 +85,7 @@
{#if issue.assignee}
-
+
{/if}
diff --git a/plugins/tracker-resources/src/components/issues/IssuesList.svelte b/plugins/tracker-resources/src/components/issues/IssuesList.svelte
index edce61f598..495328cc3c 100644
--- a/plugins/tracker-resources/src/components/issues/IssuesList.svelte
+++ b/plugins/tracker-resources/src/components/issues/IssuesList.svelte
@@ -168,7 +168,7 @@
defaultName={tracker.string.NoAssignee}
shouldShowPlaceholder={true}
isInteractive={false}
- avatarSize={'tiny'}
+ avatarSize={'x-small'}
/>
{:else if headerComponent}
(newIssue.assignee = detail)}
/>
{/if}
-
+
{/each}
diff --git a/plugins/view-resources/src/components/Menu.svelte b/plugins/view-resources/src/components/Menu.svelte
index 349f33590b..14cf01f3c1 100644
--- a/plugins/view-resources/src/components/Menu.svelte
+++ b/plugins/view-resources/src/components/Menu.svelte
@@ -13,6 +13,7 @@
// limitations under the License.
-->
{#if loaded}