Skip to content

Commit

Permalink
Merge pull request #13313 from nextcloud/fix/13312/background-editor
Browse files Browse the repository at this point in the history
fix(VideoBackgroundEditor): change the container of file picker
  • Loading branch information
nickvergessen committed Sep 16, 2024
2 parents 6acbb53 + 0822aa6 commit 5f9a1e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/MediaSettings/VideoBackgroundEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
@change="handleFileInput">
<FilePickerVue v-if="showFilePicker"
:name="t('spreed', 'File to share')"
:name="t('spreed', 'Select a file')"
:path="relativeBackgroundsFolderPath"
container=".background-editor"
container=".media-settings"
:buttons="filePickerButtons"
:multiselect="false"
@close="showFilePicker = false" />
Expand Down Expand Up @@ -154,7 +154,7 @@ export default {
filePickerButtons() {
return [{
label: t('spreed', 'Choose'),
label: t('spreed', 'Confirm'),
callback: (nodes) => this.handleFileChoose(nodes),
type: 'primary'
}]
Expand Down

0 comments on commit 5f9a1e2

Please sign in to comment.