Fix emoji picker visibility issue
This commit is contained in:
parent
1523d07857
commit
7099211ea7
|
|
@ -147,6 +147,7 @@ export default {
|
|||
class="note-action-button note-emoji-button js-add-award js-note-emoji"
|
||||
href="#"
|
||||
title="Add reaction"
|
||||
data-position="right"
|
||||
>
|
||||
<icon css-classes="link-highlight award-control-icon-neutral" name="slight-smile" />
|
||||
<icon css-classes="link-highlight award-control-icon-positive" name="smiley" />
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Fix emoji picker visibility issue
|
||||
merge_request: 28984
|
||||
author:
|
||||
type: fixed
|
||||
|
|
@ -58,6 +58,7 @@ describe('noteActions', () => {
|
|||
|
||||
it('should render emoji link', () => {
|
||||
expect(wrapper.find('.js-add-award').exists()).toBe(true);
|
||||
expect(wrapper.find('.js-add-award').attributes('data-position')).toBe('right');
|
||||
});
|
||||
|
||||
describe('actions dropdown', () => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue