Browse Source

Merge pull request #3828 from bernhardmiller/rte-position-fix

Fix left position of rteToolbarPosUpdate
pull/3905/head
Artur Arseniev 5 years ago
committed by GitHub
parent
commit
4700d30aa8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/rich_text_editor/index.js

2
src/rich_text_editor/index.js

@ -281,7 +281,7 @@ export default () => {
});
style.top = pos.top + un;
style.left = 0 + un;
style.left = pos.left + un;
},
/**

Loading…
Cancel
Save