diff --git a/ui-ngx/src/app/shared/components/queue/queue-autocomplete.component.ts b/ui-ngx/src/app/shared/components/queue/queue-autocomplete.component.ts index 897e041649..091af91cd8 100644 --- a/ui-ngx/src/app/shared/components/queue/queue-autocomplete.component.ts +++ b/ui-ngx/src/app/shared/components/queue/queue-autocomplete.component.ts @@ -123,15 +123,6 @@ export class QueueAutocompleteComponent implements ControlValueAccessor, OnInit ngAfterViewInit(): void {} - getCurrentEntity(): BaseData | null { - const currentRuleChain = this.selectQueueFormGroup.get('queueId').value; - if (currentRuleChain && typeof currentRuleChain !== 'string') { - return currentRuleChain as BaseData; - } else { - return null; - } - } - setDisabledState(isDisabled: boolean): void { this.disabled = isDisabled; if (this.disabled) {