Unverified Commit 5635762b authored by mvdbeek's avatar mvdbeek
Browse files

Fix dataste collection url in CollectionDisplay.vue

parent 1dcf4d64
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -87,9 +87,7 @@ export default {
            return collection && collection.name;
        },
        itemUrl() {
            const collectionId = this.args.history_dataset_collection_id;
            const collection = this.collections[collectionId];
            return collection.url;
            return `${getAppRoot()}api/dataset_collections/${this.args.history_dataset_collection_id}`;
        },
        downloadUrl() {
            return `${getAppRoot()}api/dataset_collections/${this.args.history_dataset_collection_id}/download`;