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}