From f5130f2469384b423043a111223b518e78f43075 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 05 四月 2024 22:53:56 +0800 Subject: [PATCH] 2024-04-05 --- src/tabviews/custom/components/group/normal-group/index.jsx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/tabviews/custom/components/group/normal-group/index.jsx b/src/tabviews/custom/components/group/normal-group/index.jsx index 512b48e..3868f59 100644 --- a/src/tabviews/custom/components/group/normal-group/index.jsx +++ b/src/tabviews/custom/components/group/normal-group/index.jsx @@ -24,7 +24,7 @@ if (config.components.length === 0) return (<div className={'ant-col ant-col-' + config.width} style={style}><div style={config.style}></div></div>) return ( - <div className={'ant-col ant-col-' + config.width + (mergeAble ? ' mk-merge-able' : '') + (visible ? '' : ' close')} style={style}> + <div className={`ant-col ant-col-${config.width} ${mergeAble ? ' mk-merge-able mk-ctrl-' + (config.setting.ctrlNumber || 1) : ''} ${visible ? '' : ' close'}`} style={style}> <div className={'normal-group-wrap ' + (config.setting.layout || '')} id={'anchor' + config.uuid} style={config.style}> <div className="mk-control"> <DoubleLeftOutlined onClick={() => this.setState({visible: false})}/> -- Gitblit v1.8.0