Unverified Commit 677e1edb authored by John Chilton's avatar John Chilton Committed by GitHub
Browse files

Merge pull request #16571 from mvdbeek/fix_dataset_collection_display_in_reports

[23.0] Fix dataset collection url in workflow reports
parents 1dcf4d64 5635762b
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`;