Skip to content

Commit 9c235b1

Browse files
committed
Hide the execution record module
1 parent 474f371 commit 9c235b1

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

CHANGELOG.md

-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
`2023-11-01`
33
**Changelog**
44
- ⭐【New Features】Query results can be refreshed
5-
- ⭐【New Features】Added history panel
65
- ⚡️【Optimize】Console Tabs adaptive width
76
- 🐞【Fixed】console save bug
87
- 🐞【Fixed】sqlite can only retrieve one piece of data
98

109
**更新日志**
1110
- ⭐【新功能】查询结果支持刷新
12-
- ⭐【新功能】增加历史记录面板
1311
- ⚡️【优化】控制台Tabs自适应宽度
1412
- 🐞【修复】console保存bug
1513
- 🐞【修复】sqlite只能查到一条数据问题

chat2db-client/src/components/CustomLayout/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ export default memo<IProps>((props) => {
2424
className={classnames(styles.iconPanelLeft, styles.iconPanel, { [styles.iconPanelLeftHidden]: !panelLeft })}
2525
onClick={togglePanelLeft}
2626
/>
27-
<div
27+
{/* <div
2828
className={classnames(styles.iconPanelRight, styles.iconPanel, { [styles.iconPanelRightHidden]: !panelRight })}
2929
onClick={togglePanelRight}
30-
/>
30+
/> */}
3131
</div>
3232
);
3333
});

chat2db-client/src/pages/main/workspace/components/WorkspaceRight/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ const WorkspaceRight = memo<IProps>((props: IProps) => {
620620
items={tabsList}
621621
/>
622622
</div>
623-
<WorkspaceExtend curWorkspaceParams={curWorkspaceParams} className={styles.workspaceExtend} />
623+
{/* <WorkspaceExtend curWorkspaceParams={curWorkspaceParams} className={styles.workspaceExtend} /> */}
624624
</LoadingContent>
625625
</div>
626626
);

0 commit comments

Comments
 (0)