From 272720219ac9a64412306060f3fbd35b0a09612b Mon Sep 17 00:00:00 2001 From: Marco Ambrosini Date: Wed, 11 Jun 2025 11:46:34 +0200 Subject: [PATCH] Hide dialog header and duplicate title If we have enough similar instances we should probably upstream these changes to the NcModal component, and provide a prop to hide the header there. Signed-off-by: Marco Ambrosini --- src/components/AssistantTextProcessingModal.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/AssistantTextProcessingModal.vue b/src/components/AssistantTextProcessingModal.vue index 00106463..6c136957 100644 --- a/src/components/AssistantTextProcessingModal.vue +++ b/src/components/AssistantTextProcessingModal.vue @@ -228,4 +228,13 @@ export default { height: 100%; } } + +// TODO: upstream the following by adding a `HideHeader` prop to the NcModal component +:deep(.modal-header) { + display: none !important; +} +:deep(.modal-container) { + top: 0 !important; + height: 100% !important; +}