Skip to content

Commit 6c2e464

Browse files
authored
bugfix/exporting-not-working (#14)
1 parent e4237e7 commit 6c2e464

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/libs/api/src/lib/model-api.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export class ModelApiService {
163163
}
164164

165165
getExportZipFile(): Observable<any> {
166-
return this.http.get(`${this.serviceUrl}${this.api.package}/export-zip/AME.zip`, {
166+
return this.http.get(`${this.serviceUrl}${this.api.package}/export-zip`, {
167167
responseType: 'blob' as 'json',
168168
});
169169
}

core/libs/editor/src/lib/editor-toolbar/components/help/document.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {MatDialogRef} from '@angular/material/dialog';
2121
styleUrls: ['./document.component.scss'],
2222
})
2323
export class DocumentComponent {
24-
AMEDocumentationLink = 'https://openmanufacturingplatform.github.io/sds-documentation/ame-guide/4.0.1/introduction.html';
24+
AMEDocumentationLink = 'https://openmanufacturingplatform.github.io/sds-documentation/ame-guide/4.0.2/introduction.html';
2525
BAMMDocumentationLink = 'https://openmanufacturingplatform.github.io/sds-documentation/bamm-specification/v1.0.0/index.html';
2626

2727
constructor(private dialogRef: MatDialogRef<DocumentComponent>, @Inject(APP_CONFIG) public config: AppConfig) {}

documentation/ame-guide/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ame-guide
22
title: Aspect Model Editor
3-
version: "4.0.1"
3+
version: "4.0.2"
44
start_page: ROOT:introduction.adoc
55
nav:
66
- modules/ROOT/nav.adoc

0 commit comments

Comments
 (0)