diff --git a/packages/platform-rig/profiles/ui/config/rush-project.json b/packages/platform-rig/profiles/ui/config/rush-project.json index 4b6cf6cfde..b1a8f0c8c5 100644 --- a/packages/platform-rig/profiles/ui/config/rush-project.json +++ b/packages/platform-rig/profiles/ui/config/rush-project.json @@ -3,7 +3,6 @@ "temp/**", ".build/**", "coverage/**", - "**/*.svelte", ".build/**", ".validate/**", ".format/**", diff --git a/packages/presentation/src/components/DocPopup.svelte b/packages/presentation/src/components/DocPopup.svelte index 1e79379189..e5799c6bef 100644 --- a/packages/presentation/src/components/DocPopup.svelte +++ b/packages/presentation/src/components/DocPopup.svelte @@ -190,6 +190,7 @@ {size} icon={IconAdd} showTooltip={{ label: create.label }} + dataId={'btnAdd'} on:click={onCreate} disabled={readonly || loading} /> diff --git a/plugins/tags-resources/src/components/TagsPopup.svelte b/plugins/tags-resources/src/components/TagsPopup.svelte index 0dbcef9d13..e9ab6a7ea7 100644 --- a/plugins/tags-resources/src/components/TagsPopup.svelte +++ b/plugins/tags-resources/src/components/TagsPopup.svelte @@ -146,12 +146,15 @@ kind={'ghost'} size={'large'} icon={show ? IconView : IconViewHide} + dataId={`btn${show ? 'Collapse' : 'Expand'}`} on:click={() => { show = !show }} /> {/if} - {#if !hideAdd}