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}{/if}
+ {#if !hideAdd}
+
+ {/if}
diff --git a/plugins/time-resources/src/components/Header.svelte b/plugins/time-resources/src/components/Header.svelte
index 178fc2a7a4..743df59ef9 100644
--- a/plugins/time-resources/src/components/Header.svelte
+++ b/plugins/time-resources/src/components/Header.svelte
@@ -58,6 +58,7 @@
icon={IconChevronLeft}
kind={'secondary'}
size={'small'}
+ dataId={'btnPrev'}
on:click={() => {
inc(-1)
}}
@@ -69,6 +70,7 @@
type={!doubleRow ? 'type-button' : 'type-button-icon'}
kind={'secondary'}
size={'small'}
+ dataId={'btnToday'}
inheritFont
hasMenu
disabled={isToday}
@@ -80,6 +82,7 @@
icon={IconChevronRight}
kind={'secondary'}
size={'small'}
+ dataId={'btnNext'}
on:click={() => {
inc(1)
}}
diff --git a/plugins/view-resources/src/components/filter/FilterSection.svelte b/plugins/view-resources/src/components/filter/FilterSection.svelte
index a374d710da..30697acd62 100644
--- a/plugins/view-resources/src/components/filter/FilterSection.svelte
+++ b/plugins/view-resources/src/components/filter/FilterSection.svelte
@@ -118,6 +118,7 @@