Compare commits

..

No commits in common. "e9e06fa51f54187f1f016ca3db2cbcba3f871f3a" and "0c54b11923f1690a28c7c741128be57604ca9c16" have entirely different histories.

2 changed files with 4 additions and 1 deletions

View File

@ -666,6 +666,8 @@ export class DescriptionEditorComponent extends BaseEditor<DescriptionEditorMode
formSubmit(onSuccess?: (response) => void): void {
this.formService.removeAllBackEndErrors(this.formGroup);
this.formService.touchAllFormFields(this.formGroup);
this.tocValidationService.validateForm();
if (this.formGroup.get('label').valid && this.formGroup.get('dmpId').valid && this.formGroup.get('dmpDescriptionTemplateId').valid
&& this.formGroup.get('descriptionTemplateId').valid && this.formGroup.get('status').valid) {
this.persistEntity(onSuccess);

View File

@ -31,8 +31,9 @@
// Buffer bar
::ng-deep .mdc-linear-progress__buffer {
--mdc-linear-progress-track-height: 11px !important;
--mdc-linear-progress-active-indicator-color: var(--secondary-color) !important;
}
::ng-deep .mdc-linear-progress__buffer-bar {
--mdc-linear-progress-track-color: #e0e2ec !important;
--mdc-linear-progress-track-color: var(--secondary-color) !important;
}