1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-02 20:15:27 +02:00

Update readme, update dependencies

This commit is contained in:
Maksim Eltyshev 2020-10-20 16:10:25 +05:00
parent 4fb6b5f156
commit 76f9748e57
9 changed files with 849 additions and 830 deletions

View file

@ -12,7 +12,7 @@ const Markdown = React.memo(({ linkStopPropagation, ...props }) => {
jsx-a11y/click-events-have-key-events,
jsx-a11y/no-static-element-interactions,
react/jsx-props-no-spreading */
(linkProps) => <a {...linkProps} onClick={handleLinkClick} />,
({ node, ...linkProps }) => <a {...linkProps} onClick={handleLinkClick} />,
/* eslint-enable jsx-a11y/anchor-has-content,
jsx-a11y/click-events-have-key-events,
jsx-a11y/no-static-element-interactions,

View file

@ -49,11 +49,14 @@ export default (WrappedComponent, defaultProps) => {
on="click"
open={isOpened}
position="bottom left"
popperModifiers={{
preventOverflow: {
boundariesElement: 'window',
popperModifiers={[
{
name: 'preventOverflow',
options: {
boundariesElement: 'window',
},
},
}}
]}
className={styles.wrapper}
onOpen={handleOpen}
onClose={handleClose}