From 45a2df97396613578f40e202f8c6e947cc56dae5 Mon Sep 17 00:00:00 2001 From: Vaibhav Sarkar Date: Sat, 9 May 2026 19:24:00 +0530 Subject: [PATCH 1/2] fix(fuselage): wrap PropsVariation table for mobile overflow Closes #1825 --- .../fuselage/.storybook/PropsVariation.tsx | 73 +++++++++++-------- 1 file changed, 41 insertions(+), 32 deletions(-) diff --git a/packages/fuselage/.storybook/PropsVariation.tsx b/packages/fuselage/.storybook/PropsVariation.tsx index cfbda409ae..ccdb7e6ea9 100644 --- a/packages/fuselage/.storybook/PropsVariation.tsx +++ b/packages/fuselage/.storybook/PropsVariation.tsx @@ -15,42 +15,51 @@ function PropsVariation({ }) { return ( - - - - {Object.keys(xAxis).map((xVariation, key) => ( - - {xVariation} - - ))} - - - - {Object.entries(yAxis).map(([yVariation, yProps], y) => ( - - - {yVariation} - - {Object.values(xAxis).map((xProps, x) => ( - - - - + + + + + {Object.keys(xAxis).map((xVariation, key) => ( + + {xVariation} ))} - ))} + + + {Object.entries(yAxis).map(([yVariation, yProps], y) => ( + + + {yVariation} + + {Object.values(xAxis).map((xProps, x) => ( + + + + + + ))} + + ))} + ); From c0757351e9770b5091a990adfb9f08d8a188bd2e Mon Sep 17 00:00:00 2001 From: Vaibhav Sarkar Date: Sun, 10 May 2026 08:14:40 +0530 Subject: [PATCH 2/2] chore: add changeset for PropsVariation overflow fix --- .changeset/fix-props-variation-overflow.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fix-props-variation-overflow.md diff --git a/.changeset/fix-props-variation-overflow.md b/.changeset/fix-props-variation-overflow.md new file mode 100644 index 0000000000..c0f6d8fb46 --- /dev/null +++ b/.changeset/fix-props-variation-overflow.md @@ -0,0 +1,5 @@ +--- +"@rocket.chat/fuselage": patch +--- + +fix(fuselage): wrap PropsVariation table to prevent mobile overflow \ No newline at end of file