Browse Source

UI: Fixed description for default created queues

pull/6643/head
fe-dev 4 years ago
parent
commit
b61ce04420
  1. 2
      ui-ngx/src/app/modules/home/components/queue/queue-form.component.ts

2
ui-ngx/src/app/modules/home/components/queue/queue-form.component.ts

@ -158,6 +158,8 @@ export class QueueFormComponent implements ControlValueAccessor, OnInit, OnDestr
this.modelValue = value;
if (isDefinedAndNotNull(this.modelValue)) {
this.queueFormGroup.patchValue(this.modelValue, {emitEvent: false});
this.queueFormGroup.get('additionalInfo').get('description')
.patchValue(this.modelValue.additionalInfo?.description, {emitEvent: false});
this.submitStrategyTypeChanged();
}
if (!this.disabled && !this.queueFormGroup.valid) {

Loading…
Cancel
Save