{#if type}
diff --git a/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte b/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte
index 7d13541b39..f6141f7eae 100644
--- a/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte
+++ b/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte
@@ -55,6 +55,7 @@
export let _id: Ref
export let _class: Ref>
+ export let embedded: boolean = false
let lastId: Ref = _id
const queryClient = createQuery()
@@ -164,12 +165,14 @@
let content: HTMLElement
-
-
+{#if !embedded}
+
+
+{/if}
{#if issue !== undefined}
-
- {#if issueId}
+ {#if !embedded}{/if}
+ {#if embedded && issueId}
{issueId}
- {/if}
+ {:else if issueId}{issueId}
{/if}
export let _class: Ref>
+ export let embedded: boolean = false
let lastId: Ref = _id
const query = createQuery()
@@ -142,6 +143,7 @@
isHeader={false}
isAside={true}
isSub={false}
+ {embedded}
withoutActivity={false}
bind:innerWidth
on:open
diff --git a/plugins/view-resources/src/components/EditDoc.svelte b/plugins/view-resources/src/components/EditDoc.svelte
index b4b66fa359..1c50eca251 100644
--- a/plugins/view-resources/src/components/EditDoc.svelte
+++ b/plugins/view-resources/src/components/EditDoc.svelte
@@ -39,6 +39,7 @@
export let _id: Ref
export let _class: Ref>
+ export let embedded: boolean = false
let realObjectClass: Ref> = _class
let lastId: Ref = _id
@@ -265,17 +266,20 @@
let content: HTMLElement
-
+{#if !embedded}
+
+{/if}
{#if object !== undefined && finalTitle !== undefined}
-
-
- {finalTitle}
-
+ {#if !embedded}{/if}
+ {#if embedded && object}
+
+ {finalTitle}
+
+ {:else}{finalTitle}
{/if}
@@ -312,7 +318,7 @@
{#if headerEditor !== undefined}
{:else if dir === 'column'}
diff --git a/tests/sanity/tests/model/recruiting/applications-details-page.ts b/tests/sanity/tests/model/recruiting/applications-details-page.ts
index 844bde45ae..a90a253ae9 100644
--- a/tests/sanity/tests/model/recruiting/applications-details-page.ts
+++ b/tests/sanity/tests/model/recruiting/applications-details-page.ts
@@ -9,7 +9,7 @@ export class ApplicationsDetailsPage extends CommonRecruitingPage {
constructor (page: Page) {
super(page)
this.page = page
- this.textApplicationId = page.locator('div.popupPanel-title a.noUnderline > div.title')
+ this.textApplicationId = page.locator('div.popupPanel-title div.title.not-active')
this.buttonState = page
.locator('div[class*="collapsed-container"]')
.nth(0)