mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
c1ad9475d7
closes https://github.com/TryGhost/Team/issues/1029 - allows site owner to filter members on specific tier - needs tiers beta flag enabled and site should have more than 1 paid tiers.
23 lines
687 B
Handlebars
23 lines
687 B
Handlebars
<GhTokenInput
|
|
@options={{this.options}}
|
|
@selected={{this.selectedOptions}}
|
|
@disabled={{or @disabled this.fetchOptionsTask.isRunning}}
|
|
@optionsComponent="power-select/options"
|
|
@allowCreation={{false}}
|
|
@renderInPlace={{this.renderInPlace}}
|
|
@onChange={{this.setSegment}}
|
|
@class="select-members gh-tier-token-input"
|
|
@placeholder="Select a tier"
|
|
as |option|
|
|
>
|
|
<span data-test-tiers-segment={{option.name}}>{{option.name}}</span>
|
|
</GhTokenInput>
|
|
|
|
{{#if @showMemberCount}}
|
|
<GhMembersSegmentCount
|
|
@segment={{@segment}}
|
|
@enforcedFilter={{@enforcedCountFilter}}
|
|
@onSegmentCountChange={{@onSegmentCountChange}}
|
|
/>
|
|
{{/if}}
|