Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
meirish committed Jul 5, 2018
1 parent eec5dfc commit f7753b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion ui/app/components/auth-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export default Ember.Component.extend(DEFAULTS, {
if (activeEle) {
activeEle.scrollIntoView();
}
activeEle = null;
// this is here because we're changing the `with` attr and there's no way to short-circuit rendering,
// so we'll just nav -> get new attrs -> re-render
if (!this.get('selectedAuth') || (this.get('selectedAuth') && !this.get('selectedAuthBackend'))) {
Expand Down
11 changes: 5 additions & 6 deletions ui/app/templates/vault/cluster/access/methods.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@
</PageHeader>

{{#each (sort-by "path" model) as |method|}}
{{#linked-block
"vault.cluster.access.methods"
class="box is-sideless is-marginless has-pointer "
data-test-auth-backend-link=method.id
}}
<div
class="box is-sideless is-marginless"
data-test-auth-backend-link={{method.id}}
>
<div class="level is-mobile">
<div class="level-left">
<div>
Expand Down Expand Up @@ -76,5 +75,5 @@
</div>
</div>
</div>
{{/linked-block}}
</div>
{{/each}}

0 comments on commit f7753b1

Please sign in to comment.