mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* Refactors ConfirmAction implementation as a popover * Improves copy surrounding consequences of destructive actions * Moves 'Delete' buttons to Toolbar
24 lines
639 B
Handlebars
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>
|