Unverified Commit 2dee7e13 authored by davelopez's avatar davelopez
Browse files

Display "include deleted" for admins regardless of current content

parent 31c0eba7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ export default {
            return this.folderContents.find((el) => el.type === "folder" || el.type === "file");
        },
        canDelete: function () {
            return !!(this.contains_file_or_folder && this.is_admin);
            return !!this.is_admin;
        },
        dataset_manipulation: function () {
            const Galaxy = getGalaxyInstance();