Ghost/ghost/admin/app/components/settings/history/search.hbs
Daniel Lockyer b226b03f09
Renamed Audit Log to History
refs https://github.com/TryGhost/Toolbox/issues/356

- this commit updates the route to `/settings/history` and moves all the
  files to their new name so we can avoid further cleanup down the line
2022-09-06 11:49:29 +01:00

24 lines
785 B
Handlebars

{{#if @selected}}
<button class="gh-btn" {{on "click" (fn @onChange null)}} type="button">
<span class="gh-btn-label-green">
Clear search &times;
</span>
</button>
{{else}}
<PowerSelect
@searchEnabled={{false}}
@search={{perform this.searchUsersTask}}
@selected={{@selected}}
@onChange={{@onChange}}
@triggerClass="gh-member-filter-search-trigger"
@dropdownClass="gh-member-filter-search-dropdown"
@triggerComponent="gh-input-with-select/trigger"
@placeholder="Search staff"
@extra={{hash showSearchMessage=false}}
as |member|
>
{{#if member.name}}<strong>{{member.name}}</strong>{{/if}}
<span>{{member.email}}</span>
</PowerSelect>
{{/if}}