Skip to content

Commit c80be9b

Browse files
committed
1) Align cancel query icon properly on the Dashboard.
2) Update release note.
1 parent 84e2b84 commit c80be9b

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

docs/en_US/release_notes_9_2.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ Housekeeping
3333
Bug fixes
3434
*********
3535

36+
| `Issue #8006 <https://github.com/pgadmin-org/pgadmin4/issues/8006>`_ - Removed the pre-install script from the Red Hat build function as it was causing a No such file or directory warning during the update.
37+
| `Issue #8355 <https://github.com/pgadmin-org/pgadmin4/issues/8355>`_ - Change session files garbage collection strategy.
3638
| `Issue #8437 <https://github.com/pgadmin-org/pgadmin4/issues/8437>`_ - Fixed an issue where the PSQL terminal displays keyname for non alphanumeric keys.
3739
| `Issue #8462 <https://github.com/pgadmin-org/pgadmin4/issues/8462>`_ - Fixed an issue where geometries in the geometry viewer will render partially when the container was resized.
3840
| `Issue #8473 <https://github.com/pgadmin-org/pgadmin4/issues/8473>`_ - Change the stop/terminate icon at all the places for better UX.

web/pgadmin/dashboard/static/js/Dashboard.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ function getCancelCell(pgAdmin, sid, did, canTakeAction, onSuccess) {
193193

194194
return (
195195
<PgIconButton
196-
size="xs"
196+
size="md"
197+
className='Buttons-dashBoardStopRound'
197198
noBorder
198199
icon={<StopRoundedIcon/>}
199200
onClick={() => {

web/pgadmin/static/js/components/Buttons.jsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ const StyledButton = styled(Button)(({theme, color}) => ({
116116
minWidth: '30px',
117117
}
118118
},
119+
'&.Buttons-dashBoardStopRound':{
120+
paddingLeft : '0px',
121+
paddingBottom : '5px'
122+
}
119123

120124
}));
121125

0 commit comments

Comments
 (0)