This is an automated email from the ASF dual-hosted git repository. andytaylor pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/artemis-console.git
commit 69650ab59e57778b4bed31830119b595395724d7 Author: gchuf <[email protected]> AuthorDate: Fri Apr 10 15:30:24 2026 +0200 ARTEMIS-5998 - remove some padding --- .../packages/artemis-console-plugin/src/status/Status.tsx | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/status/Status.tsx b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/status/Status.tsx index 27ddc00..ed00675 100644 --- a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/status/Status.tsx +++ b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/status/Status.tsx @@ -223,12 +223,7 @@ export const Status: React.FunctionComponent = () => { data={{ x: 'Used:', y: brokerInfo?.addressMemoryUsed }} labels={["Used: " + brokerInfo?.addressMemoryUsed.toFixed(2) + "%"]} name="chart2" - padding={{ - bottom: 20, - left: 20, - right: 20, - top: 20 - }} + padding={{ top: 20 }} subTitle="MiB Used" title={"" + brokerInfo?.addressMemoryUsage.toFixed(2)} width={350} /> @@ -246,12 +241,7 @@ export const Status: React.FunctionComponent = () => { ariaDesc="Disk Used" ariaTitle="Disk Used" constrainToVisibleArea - padding={{ - bottom: 20, - left: 20, - right: 20, - top: 20 - }} + padding={{ top: 20 }} data={[ { x: 'Usable at maxDiskUsage%', y: diskSpaceMax }, { x: 'Max at 100%', y: 100 } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
