fix(editor): Make inline text edit component reactive to prop changes (#17557)

This commit is contained in:
Elias Meire
2025-07-25 16:04:38 +02:00
committed by GitHub
parent 5a3b0a2481
commit 9c793a45c5
4 changed files with 62 additions and 44 deletions

View File

@@ -866,7 +866,8 @@ onBeforeUnmount(() => {
<style lang="scss" module>
.backdrop {
position: fixed;
position: absolute;
z-index: var(--z-index-ndv);
top: 0;
left: 0;
right: 0;
@@ -875,9 +876,10 @@ onBeforeUnmount(() => {
}
.dialog {
position: fixed;
width: calc(100vw - var(--spacing-2xl));
height: calc(100vh - var(--spacing-2xl));
position: absolute;
z-index: var(--z-index-ndv);
width: calc(100% - var(--spacing-2xl));
height: calc(100% - var(--spacing-2xl));
top: var(--spacing-l);
left: var(--spacing-l);
border: none;

View File

@@ -777,6 +777,7 @@ export const EXPERIMENTS_TO_TRACK = [
RAG_STARTER_WORKFLOW_EXPERIMENT.name,
EXTRA_TEMPLATE_LINKS_EXPERIMENT.name,
TEMPLATE_ONBOARDING_EXPERIMENT.name,
NDV_UI_OVERHAUL_EXPERIMENT.name,
];
export const MFA_FORM = {