Commit 95d713b2 authored by George Kalampokis's avatar George Kalampokis
Browse files

Small fix for creating new versions of Dataset Templates

parent 0cc89fd2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -196,6 +196,8 @@ export class DatasetProfileEditorComponent extends BaseComponent implements OnIn
					this.router.navigate(['/dataset-profiles']);
				});
		} else if (this.newVersionId) {
			data.label = this.form.get('label').value;
			data.description = this.form.get('description').value;
			this.datasetProfileService.newVersion(this.newVersionId, data)
				.pipe(takeUntil(this._destroyed))
				.subscribe(() => {