Skip to content

Commit 18e900f

Browse files
committed
delete unnecessary class
1 parent bc27ce1 commit 18e900f

File tree

1 file changed

+8
-6
lines changed
  • frontend/app/templates/components/encryptable

1 file changed

+8
-6
lines changed

frontend/app/templates/components/encryptable/form.hbs

+8-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</Modal.header>
77
<Modal.body>
88
<div class="container-fluid">
9-
<BsForm class="secret" @model={{this.changeset}} as |form|>
9+
<BsForm @model={{this.changeset}} as |form|>
1010
<div class="encryptable-form-name">
1111
<div class="row">
1212
{{#if this.errors}}
@@ -115,7 +115,7 @@
115115
<img class="d-inline-block position-absolute encrypted-icon"
116116
src="/assets/images/encrypted_small.svg" alt="encrypted value">
117117
</a>
118-
<el.control type="password" autocomplete="off" @name="cleartextPassword"
118+
<el.control autocomplete="off" @name="cleartextPassword"
119119
tabindex="2"></el.control>
120120
</form.element>
121121
</form.group>
@@ -254,10 +254,12 @@
254254
</div>
255255
</Modal.body>
256256
<Modal.footer>
257-
<BsButton id="encryptable-form-save-button" @onClick={{action this.submit this.changeset}} @type="primary">{{t
258-
"save"}}</BsButton>
259-
<BsButton id="encryptable-form-close-button" @onClick={{action this.abort}} @type="secondary">{{t
260-
"close"}}</BsButton>
257+
<BsButton id="encryptable-form-save-button" @onClick={{action this.submit this.changeset}} @type="primary">
258+
{{t "save"}}
259+
</BsButton>
260+
<BsButton id="encryptable-form-close-button" @onClick={{action this.abort}} @type="secondary">
261+
{{t "close"}}
262+
</BsButton>
261263
</Modal.footer>
262264
</BsModal>
263265
{{/if}}

0 commit comments

Comments
 (0)