From 55a1b8402fd258da084df9b8a3935eef8450247c Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期日, 01 八月 2021 18:03:02 +0800 Subject: [PATCH] 2021-08-01 --- src/menu/components/form/dragtitle/index.jsx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/menu/components/form/dragtitle/index.jsx b/src/menu/components/form/dragtitle/index.jsx index 69ce1a4..87c40ac 100644 --- a/src/menu/components/form/dragtitle/index.jsx +++ b/src/menu/components/form/dragtitle/index.jsx @@ -4,7 +4,7 @@ import Card from './card' import './index.scss' -const Container = ({list, selectId, handleList, handleGroup, closeGroup, selectGroup}) => { +const Container = ({list, selectId, tabtype, handleList, handleGroup, closeGroup, selectGroup}) => { const [cards, setCards] = useState(list) const moveCard = (id, atIndex) => { const { card, index } = findCard(id) @@ -44,7 +44,7 @@ } return ( - <div className="normal-form-titles" > + <div className={'normal-form-titles ' + (tabtype || '') } > {cards.map(card => ( <Card id={card.uuid} -- Gitblit v1.8.0