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:
parent
4fb6b5f156
commit
76f9748e57
9 changed files with 849 additions and 830 deletions
|
@ -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,
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue