minor change
This commit is contained in:
parent
000e1d53a8
commit
88327290a4
|
@ -66,9 +66,13 @@
|
||||||
<!--
|
<!--
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!--
|
<autocomplete-remote [label]="'Please select a datarepo'" [url]="'https://eestore.paas2.uninett.no/api/datarepo/'" ></autocomplete-remote>
|
||||||
<autocomplete-remote [id]="'test-autocomplete'" [label]="'Please select smth'" [url]="'https://eestore.paas2.uninett.no/api/datarepo/'" ></autocomplete-remote>
|
<autocomplete-remote [label]="'Please select a projectrepo'" [url]="'https://eestore.paas2.uninett.no/api/projectrepo/'" ></autocomplete-remote>
|
||||||
-->
|
<autocomplete-remote [label]="'Please select an organizationrepo'" [url]="'https://eestore.paas2.uninett.no/api/organizationrepo/'" ></autocomplete-remote>
|
||||||
</div>
|
<autocomplete-remote [label]="'Please select a personrepo'" [url]="'https://eestore.paas2.uninett.no/api/personrepo/'" ></autocomplete-remote>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
|
@ -21,6 +21,7 @@ export class AutocompleteRemoteComponent implements OnInit {
|
||||||
@Input() id : string;
|
@Input() id : string;
|
||||||
@Input() label : string;
|
@Input() label : string;
|
||||||
@Input() url : string;
|
@Input() url : string;
|
||||||
|
@Input() formControlName : string;
|
||||||
|
|
||||||
selectedValue : string;
|
selectedValue : string;
|
||||||
//@Output() selectedValueEmitter: EventEmitter<string> = new EventEmitter<string>();
|
//@Output() selectedValueEmitter: EventEmitter<string> = new EventEmitter<string>();
|
||||||
|
|
Loading…
Reference in New Issue