From db7ed8049e7cdd02ffca52f827ea79d82efeba04 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 20 Mar 2023 16:15:53 +0700 Subject: [PATCH] TSK-879: Fix empty assignee selection (#2774) Signed-off-by: Andrey Sobolev --- common/scripts/docker_tag_push.sh | 4 ++++ .../src/components/PersonContent.svelte | 9 ++++++++- pods/front/package.json | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 common/scripts/docker_tag_push.sh diff --git a/common/scripts/docker_tag_push.sh b/common/scripts/docker_tag_push.sh new file mode 100755 index 0000000000..6e70085b1c --- /dev/null +++ b/common/scripts/docker_tag_push.sh @@ -0,0 +1,4 @@ +#!/bin/bash +echo "Tagging release $1 with version $2" +docker tag "$1" "$1:$2" +docker push "$1:$2" diff --git a/plugins/contact-resources/src/components/PersonContent.svelte b/plugins/contact-resources/src/components/PersonContent.svelte index ae0f6cd73c..c2bad1a3d5 100644 --- a/plugins/contact-resources/src/components/PersonContent.svelte +++ b/plugins/contact-resources/src/components/PersonContent.svelte @@ -32,6 +32,12 @@ export let showTooltip: LabelAndProps | undefined = undefined export let enlargedText = false export let element: HTMLElement | undefined = undefined + + const onEditClick = (evt: MouseEvent) => { + if (isInteractive) { + onEdit?.(evt) + } + } {#if value} @@ -62,7 +68,8 @@ {/if} {:else if shouldShowPlaceholder} - + + {#if shouldShowAvatar}