Skip to content

Commit

Permalink
104312: Add missing query @input() to ThemedDynamicLookupRelationExte…
Browse files Browse the repository at this point in the history
…rnalSourceTabComponent
  • Loading branch information
alexandrevryghem committed Jul 25, 2023
1 parent 9b1d18b commit 5062e46
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { DsDynamicLookupRelationExternalSourceTabComponent } from './dynamic-loo
})
export class ThemedDynamicLookupRelationExternalSourceTabComponent extends ThemedComponent<DsDynamicLookupRelationExternalSourceTabComponent> {
protected inAndOutputNames: (keyof DsDynamicLookupRelationExternalSourceTabComponent & keyof this)[] = ['label', 'listId',
'item', 'collection', 'relationship', 'context', 'repeatable', 'importedObject', 'externalSource'];
'item', 'collection', 'relationship', 'context', 'query', 'repeatable', 'importedObject', 'externalSource'];

@Input() label: string;

Expand All @@ -29,6 +29,8 @@ export class ThemedDynamicLookupRelationExternalSourceTabComponent extends Theme

@Input() context: Context;

@Input() query: string;

@Input() repeatable: boolean;

@Output() importedObject: EventEmitter<ListableObject> = new EventEmitter();
Expand Down

0 comments on commit 5062e46

Please sign in to comment.