diff --git a/src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue b/src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue index e9d34ae62d..ea1140fbe1 100644 --- a/src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue +++ b/src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue @@ -123,6 +123,15 @@ export default { type: String, default: '', }, + + /** + * Additional elements to add to the focus trap + */ + additionalTrapElements: { + type: Array, + default: () => [], + }, + }, emits: ['update:open'], @@ -311,6 +320,7 @@ export default { attrs: { container: this.container, size: 'large', + additionalTrapElements: this.additionalTrapElements, }, on: { close: () => { this.handleCloseModal() },