mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-02 03:39:03 +00:00
* Module consolidation on datahub-web - clean up to some OS logic from previous update - initial implementation of virtual assistant * Fix accidental change to datahub user module license
26 lines
770 B
Handlebars
26 lines
770 B
Handlebars
<div
|
|
class="ember-power-select-trigger ember-power-select-typeahead-trigger pwr-user-lookup__auto-suggestion"
|
|
>
|
|
<Input
|
|
@type="search"
|
|
@role="combobox"
|
|
@autocomplete="off"
|
|
class="ember-power-select-typeahead-input ember-power-select-search-input pwr-user-lookup__auto-suggestion__input"
|
|
placeholder={{if showPlaceholder "Add an owner"}}
|
|
@value={{suggestedText}}
|
|
/>
|
|
</div>
|
|
<div class="pwr-user-lookup__typeahead-container">
|
|
<PowerSelectTypeahead
|
|
@searchPlaceholder="Add an owner"
|
|
@options={{this.suggestionOptions}}
|
|
@defaultHighlighted={{this.highlight}}
|
|
@selected={{this.selectedEntity}}
|
|
@search={{fn this.onSearch}}
|
|
@onchange={{fn this.onChangeSelection}}
|
|
as |name|
|
|
>
|
|
{{name}}
|
|
</PowerSelectTypeahead>
|
|
</div>
|