1) Align cancel query icon properly on the Dashboard.

2) Update release note.
pull/8547/head^2
Akshay Joshi 2025-03-13 16:37:24 +05:30
parent 84e2b844e0
commit c80be9b3a3
3 changed files with 8 additions and 1 deletions

View File

@ -33,6 +33,8 @@ Housekeeping
Bug fixes
*********
| `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.
| `Issue #8355 <https://github.com/pgadmin-org/pgadmin4/issues/8355>`_ - Change session files garbage collection strategy.
| `Issue #8437 <https://github.com/pgadmin-org/pgadmin4/issues/8437>`_ - Fixed an issue where the PSQL terminal displays keyname for non alphanumeric keys.
| `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.
| `Issue #8473 <https://github.com/pgadmin-org/pgadmin4/issues/8473>`_ - Change the stop/terminate icon at all the places for better UX.

View File

@ -193,7 +193,8 @@ function getCancelCell(pgAdmin, sid, did, canTakeAction, onSuccess) {
return (
<PgIconButton
size="xs"
size="md"
className='Buttons-dashBoardStopRound'
noBorder
icon={<StopRoundedIcon/>}
onClick={() => {

View File

@ -116,6 +116,10 @@ const StyledButton = styled(Button)(({theme, color}) => ({
minWidth: '30px',
}
},
'&.Buttons-dashBoardStopRound':{
paddingLeft : '0px',
paddingBottom : '5px'
}
}));