diff --git a/libs/ui/src/components/NeoModal/NeoModal.vue b/libs/ui/src/components/NeoModal/NeoModal.vue index 2a3557b2ab..eb21898852 100644 --- a/libs/ui/src/components/NeoModal/NeoModal.vue +++ b/libs/ui/src/components/NeoModal/NeoModal.vue @@ -13,6 +13,7 @@ :destroy-on-hide="destroyOnHide" :can-cancel="canCancel" :full-screen="fullScreen" + :data-testid="dataTestid" :content-class="[ ...contentClassName, noShadow ? 'no-shadow' : '', @@ -50,6 +51,7 @@ const props = withDefaults( mobileBreakpoint?: string appendToBody?: boolean noOverlap?: boolean + dataTestid?: string }>(), { destroyOnHide: true, @@ -62,6 +64,7 @@ const props = withDefaults( maxHeight: '80vh', mobileBreakpoint: '768px', appendToBody: true, + dataTestid: undefined, }, )