vault/ui/lib/replication/addon/templates/components/replication-action-reindex.hbs
Joshua Ogle 6603a86499
UI: Confirm Action as a popover
* Refactors ConfirmAction implementation as a popover
* Improves copy surrounding consequences of destructive actions
* Moves 'Delete' buttons to Toolbar
2019-05-17 11:29:21 -06:00

24 lines
639 B
Handlebars

<h4 class="title is-5 is-marginless">
Reindex
</h4>
<div class="content">
<p>
Reindex the local data storage. This can cause a very long delay depending
on the number and size of objects in the data store.
</p>
</div>
<div class="field">
<div class="control">
<ConfirmAction
@buttonClasses="button is-primary"
@confirmTitle="Begin reindex?"
@confirmMessage="This will initiate reindexing of the local data storage."
@confirmButtonText="Reindex"
@horizontalPosition="auto-left"
@onConfirmAction={{action "onSubmit" "reindex"}}
>
Reindex
</ConfirmAction>
</div>
</div>