Unverified Commit e2e223a8 authored by Dannon's avatar Dannon Committed by GitHub
Browse files

Merge pull request #14190 from davelopez/22.05_fix_remote_files_dialog_selection

[22.05] Fix `FilesDialog` navigation back when a file source shows an error
parents 889d6130 3ab937f8
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
        :options-show="optionsShow"
        :modal-show="modalShow"
        :hide-modal="() => (modalShow = false)"
        :back-func="load"
        :back-func="goBack"
        :undo-show="undoShow">
        <template v-slot:search>
            <data-dialog-search v-model="filter" />
@@ -330,6 +330,10 @@ export default {
                    });
            }
        },
        goBack() {
            // Loading without a record navigates back one level
            this.load();
        },
        parseItemFileMode(item) {
            const result = {
                id: item.uri,