open-vault/ui/app/components/toolbar-secret-link.js

14 lines
289 B
JavaScript

import OuterHTML from './outer-html';
import { computed } from '@ember/object';
export default OuterHTML.extend({
glyph: computed('type', function() {
if (this.type == 'add') {
return 'plus-plain';
} else {
return 'chevron-right';
}
}),
tagName: 'span',
});