summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco <marcoambrosini@icloud.com>2023-06-16 13:46:44 +0800
committerMarco <marcoambrosini@icloud.com>2023-06-16 13:46:44 +0800
commit9ec9f5f71a83f882764948457aa0a20bc7246a12 (patch)
treea36502a816b37055054d9958fe97f04b7220a9ee
parent39cbdc0f9ecb5d9adc0e681830f9f30dc71e6d84 (diff)
Fix media settings in files sidebarbugfix/8709/fix-media-settings-while-editing-file
When starting a call from the files sidebar and while editing a file, the media settings was not display because it was covered by the file dialog. Increasing the z-index of the media settings dialog didn't fix the issue (it's unclear to me why not). Removing the container of the media settings dialog and thereby assigning the default body as container fixes the issue. Signed-off-by: Marco <marcoambrosini@icloud.com>
-rw-r--r--src/components/MediaSettings/MediaSettings.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/MediaSettings/MediaSettings.vue b/src/components/MediaSettings/MediaSettings.vue
index 23b782725..061b4802b 100644
--- a/src/components/MediaSettings/MediaSettings.vue
+++ b/src/components/MediaSettings/MediaSettings.vue
@@ -22,7 +22,6 @@
<template>
<NcModal v-if="modal"
class="talk-modal"
- :container="container"
@close="closeModal">
<div class="media-settings">
<h2 class="media-settings__title">
@@ -616,4 +615,5 @@ export default {
display: flex !important;
max-width: 500px !important;
}
+
</style>