Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
HSunboy committed Sep 23, 2024
1 parent c146975 commit 5ccf791
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/page/Project/Database/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ const Database: React.FC<IProps> = ({ id, modalStore }) => {
);
}
return (
<Action.Group size={3}>
<Action.Group size={2}>
{config?.features?.task?.includes(TaskType.EXPORT) && setting.enableDBExport && (
<Action.Link
key={'export'}
Expand Down
6 changes: 5 additions & 1 deletion src/page/Workspace/components/SQLResultSet/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ const getColumns = (
ellipsis: {
showTitle: false,
},
render: (text) => <Tooltip title={text}>{text}</Tooltip>,
render: (text) => (
<Tooltip placement="left" title={text}>
{text}
</Tooltip>
),
},
{
title: formatMessage({
Expand Down
1 change: 1 addition & 0 deletions src/store/sql/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ export class SQLStore {
} catch (e) {
throw e;
} finally {
this.logLoading = false;
this.runningPageKey.delete(pageKey);
this.isRunningSection.delete(pageKey);
}
Expand Down

0 comments on commit 5ccf791

Please sign in to comment.