Skip to content

Commit

Permalink
resolve merge conflicts from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
andaley committed Feb 13, 2020
1 parent 46a9b78 commit dac7e7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions ui/app/models/transit-key.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { set, get, computed } from '@ember/object';
import DS from 'ember-data';
import clamp from 'vault/utils/clamp';
import lazyCapabilities, { apiPath } from 'vault/macros/lazy-capabilities';
import attachCapabilities from 'vault/lib/attach-capabilities';

const { attr } = DS;

Expand Down Expand Up @@ -42,7 +41,7 @@ const ACTION_VALUES = {
export: { isSupported: 'exportable', description: 'Get the named key', glyph: 'exit' },
};

let Model = DS.Model.extend({
export default DS.Model.extend({
type: attr('string', {
defaultValue: 'aes256-gcm96',
}),
Expand Down
2 changes: 1 addition & 1 deletion ui/app/templates/partials/secret-list/item.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class="list-item-row"
data-test-secret-link=item.id
encode=true
queryParams=(hash (secret-query-params backendModel.type))
queryParams=(secret-query-params backendModel.type)
}}
<div class="columns is-mobile">
<div class="column is-10">
Expand Down

0 comments on commit dac7e7d

Please sign in to comment.