mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
fix(editor): Make inline text edit component reactive to prop changes (#17557)
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user