mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
affe6743e5
refs: https://github.com/TryGhost/Team/issues/1145 - this should allow us to remove the /products endpoint in v5 It avoids: - `kg-product-card`, that really is meant to say product - `product-cadence` on offers Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
17 lines
376 B
Handlebars
17 lines
376 B
Handlebars
{{#if this.tier.active}}
|
|
{{#unless this.tier.isNew}}
|
|
<button
|
|
type="button"
|
|
{{on "click" this.handleArchiveTier}}
|
|
>
|
|
<span>Archive</span>
|
|
</button>
|
|
{{/unless}}
|
|
{{else}}
|
|
<button
|
|
type="button"
|
|
{{on "click" this.handleUnarchiveTier}}
|
|
>
|
|
<span>Reactivate</span>
|
|
</button>
|
|
{{/if}} |