File tree 3 files changed +3
-5
lines changed
pages/main/workspace/components/WorkspaceRight
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2
2
` 2023-11-01 `
3
3
** Changelog**
4
4
- ⭐【New Features】Query results can be refreshed
5
- - ⭐【New Features】Added history panel
6
5
- ⚡️【Optimize】Console Tabs adaptive width
7
6
- 🐞【Fixed】console save bug
8
7
- 🐞【Fixed】sqlite can only retrieve one piece of data
9
8
10
9
** 更新日志**
11
10
- ⭐【新功能】查询结果支持刷新
12
- - ⭐【新功能】增加历史记录面板
13
11
- ⚡️【优化】控制台Tabs自适应宽度
14
12
- 🐞【修复】console保存bug
15
13
- 🐞【修复】sqlite只能查到一条数据问题
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ export default memo<IProps>((props) => {
24
24
className = { classnames ( styles . iconPanelLeft , styles . iconPanel , { [ styles . iconPanelLeftHidden ] : ! panelLeft } ) }
25
25
onClick = { togglePanelLeft }
26
26
/>
27
- < div
27
+ { /* <div
28
28
className={classnames(styles.iconPanelRight, styles.iconPanel, { [styles.iconPanelRightHidden]: !panelRight })}
29
29
onClick={togglePanelRight}
30
- />
30
+ /> */ }
31
31
</ div >
32
32
) ;
33
33
} ) ;
Original file line number Diff line number Diff line change @@ -620,7 +620,7 @@ const WorkspaceRight = memo<IProps>((props: IProps) => {
620
620
items = { tabsList }
621
621
/>
622
622
</ div >
623
- < WorkspaceExtend curWorkspaceParams = { curWorkspaceParams } className = { styles . workspaceExtend } />
623
+ { /* <WorkspaceExtend curWorkspaceParams={curWorkspaceParams} className={styles.workspaceExtend} /> */ }
624
624
</ LoadingContent >
625
625
</ div >
626
626
) ;
You can’t perform that action at this time.
0 commit comments