diff --git a/app/components/CopyToClipboardButton.vue b/app/components/CopyToClipboardButton.vue index f709aad730..1228bd99e0 100644 --- a/app/components/CopyToClipboardButton.vue +++ b/app/components/CopyToClipboardButton.vue @@ -12,6 +12,7 @@ const props = defineProps<{ ariaLabelCopy?: string ariaLabelCopied?: string buttonAttrs?: HTMLAttributes + hideCopyText?: boolean }>() const buttonCopyText = computed(() => props.copyText || $t('common.copy')) @@ -32,6 +33,7 @@ function handleClick() {
diff --git a/app/components/VersionSelector.vue b/app/components/VersionSelector.vue index 6cf5c9c071..69c6d6c07f 100644 --- a/app/components/VersionSelector.vue +++ b/app/components/VersionSelector.vue @@ -523,6 +523,11 @@ watch( } }, ) + +// Expose isOpen state to parent components +defineExpose({ + isOpen, +})