a1cef4a72a
* fix tooltip submitting form * add changelog * add changelog actually
17 lines
366 B
JavaScript
17 lines
366 B
JavaScript
import Component from '@ember/component';
|
|
import layout from '../templates/components/info-tooltip';
|
|
|
|
export default Component.extend({
|
|
layout,
|
|
'data-test-component': 'info-tooltip',
|
|
attributeBindings: ['data-test-component'],
|
|
tagName: 'span',
|
|
classNames: ['is-inline-block'],
|
|
|
|
actions: {
|
|
preventSubmit(e) {
|
|
e.preventDefault();
|
|
},
|
|
},
|
|
});
|