discourse-data-explorer/assets/javascripts/discourse/components/share-report.hbs

25 lines
625 B
Handlebars
Raw Normal View History

<div class="share-report">
<a href="#" {{on "click" this.open}} class="share-report-button">
{{d-icon "link"}}
{{@group}}
</a>
{{#if this.visible}}
<div
class="popup"
{{did-insert this.registerListeners}}
{{will-destroy this.unregisterListeners}}
>
<label>{{i18n "explorer.link"}} {{@group}}</label>
<input type="text" value={{this.link}} {{did-insert this.focusInput}} />
<DButton
@action={{this.close}}
@icon="times"
@aria-label="share.close"
@title="share.close"
2024-01-15 06:17:19 -05:00
class="btn-flat close"
/>
</div>
{{/if}}
</div>