mirror of
https://github.com/status-im/consul.git
synced 2025-01-23 20:19:29 +00:00
06d09d11f1
* Change all instances of yield/block-slots to use attributes over positional arguments * Remove the ability to use yield/block-slots with positional params
16 lines
591 B
Handlebars
16 lines
591 B
Handlebars
{{#feedback-dialog type='inline'}}
|
|
{{#block-slot name='action' as |success error|}}
|
|
{{#copy-button success=(action success) error=(action error) clipboardText=copy title=(concat 'Copy ' name ' to the clipboard')}}{{#if hasBlock }}{{yield}}{{else}}{{value}}{{/if}}{{/copy-button}}
|
|
{{/block-slot}}
|
|
{{#block-slot name='success' as |transition|}}
|
|
<p class={{transition}}>
|
|
Copied {{name}}!
|
|
</p>
|
|
{{/block-slot}}
|
|
{{#block-slot name='error' as |transition|}}
|
|
<p class={{transition}}>
|
|
Sorry, something went wrong!
|
|
</p>
|
|
{{/block-slot}}
|
|
{{/feedback-dialog}}
|