1) Align cancel query icon properly on the Dashboard.
2) Update release note.pull/8559/head
parent
84e2b844e0
commit
c80be9b3a3
|
@ -33,6 +33,8 @@ Housekeeping
|
||||||
Bug fixes
|
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 #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 #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.
|
| `Issue #8473 <https://github.com/pgadmin-org/pgadmin4/issues/8473>`_ - Change the stop/terminate icon at all the places for better UX.
|
||||||
|
|
|
@ -193,7 +193,8 @@ function getCancelCell(pgAdmin, sid, did, canTakeAction, onSuccess) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PgIconButton
|
<PgIconButton
|
||||||
size="xs"
|
size="md"
|
||||||
|
className='Buttons-dashBoardStopRound'
|
||||||
noBorder
|
noBorder
|
||||||
icon={<StopRoundedIcon/>}
|
icon={<StopRoundedIcon/>}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
|
|
@ -116,6 +116,10 @@ const StyledButton = styled(Button)(({theme, color}) => ({
|
||||||
minWidth: '30px',
|
minWidth: '30px',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
'&.Buttons-dashBoardStopRound':{
|
||||||
|
paddingLeft : '0px',
|
||||||
|
paddingBottom : '5px'
|
||||||
|
}
|
||||||
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue