- use "/api/file/download/" instead of "/file/download/" inside dataset-detail.component.ts

This commit is contained in:
Arno Kaimbacher 2022-11-22 11:48:58 +01:00
parent 20720fad0c
commit 49ef135106

View File

@ -27,7 +27,7 @@ export default class DatasetDetailComponent extends Vue {
private error = ""; private error = "";
public loaded = false; public loaded = false;
public openAccessLicences: Array<string> = ["CC-BY-4.0", "CC-BY-SA-4.0"]; public openAccessLicences: Array<string> = ["CC-BY-4.0", "CC-BY-SA-4.0"];
public portal = VUE_APP_PORTAL + "/file/download/"; public portal = VUE_APP_PORTAL + "/api/file/download/";
created(): void { created(): void {
dayjs.extend(advancedFormat); dayjs.extend(advancedFormat);