mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
17 lines
319 B
Handlebars
17 lines
319 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
<button
|
|
type="button"
|
|
class="button b64-toggle {{if @isInput 'is-input' 'is-textarea'}}"
|
|
{{on "click" this.handleClick}}
|
|
...attributes
|
|
>
|
|
{{#if this.isBase64}}
|
|
Decode from base64
|
|
{{else}}
|
|
Encode to base64
|
|
{{/if}}
|
|
</button> |