Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pat/contentbrowser/src/ContentBrowser.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import { fly } from "svelte/transition";
import _t from "../../../core/i18n-wrapper";
import { ensureIntlSupport } from "../../../core/intl-loader";
import Upload from "../../upload/upload";
import Upload from "../../upload/upload--implementation";
import contentStore from "./ContentStore";
import {
clickOutside,
Expand Down
2 changes: 1 addition & 1 deletion src/pat/relateditems/relateditems.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ export default Base.extend({
},

async initUploadView(disabled) {
let Upload = await import("../upload/upload");
let Upload = await import("../upload/upload--implementation");
Upload = Upload.default;

const upload_button = this.$toolbar[0].querySelector(".upload button");
Expand Down
2 changes: 1 addition & 1 deletion src/pat/structure/js/views/upload.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import $ from "jquery";
import _ from "underscore";
import PopoverView from "../../../../core/ui/views/popover";
import Upload from "../../../upload/upload";
import Upload from "../../../upload/upload--implementation";

export default PopoverView.extend({
className: "popover upload",
Expand Down
Loading
Loading