From 4fefd069e0e428a3a38ac4a2711fec5e8d252246 Mon Sep 17 00:00:00 2001 From: Marek Mihok Date: Wed, 21 Feb 2024 16:57:38 +0100 Subject: [PATCH 1/2] fix: include spacing in width for inline horizontal components #2251 --- ui/src/form.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/src/form.tsx b/ui/src/form.tsx index 02b22cf4a7..79a7a19053 100644 --- a/ui/src/form.tsx +++ b/ui/src/form.tsx @@ -215,7 +215,8 @@ const alignItems: 'center', $nest: { '> [data-visible="true"] ~ div': { - marginLeft: 8 + paddingLeft: 8, + boxSizing: 'border-box' } } }, From 2960a354aa48a96973f712c80ccff031ec528354 Mon Sep 17 00:00:00 2001 From: Marek Mihok Date: Thu, 22 Feb 2024 16:37:13 +0100 Subject: [PATCH 2/2] fix: regression tests wave reconnect timeout issue for firefox #2251 --- tools/showcase/showcase.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/showcase/showcase.py b/tools/showcase/showcase.py index c44c293217..a65f838c1a 100644 --- a/tools/showcase/showcase.py +++ b/tools/showcase/showcase.py @@ -201,7 +201,9 @@ def main(): try: os.makedirs(example_file_path) - wave_server = subprocess.Popen(['make', 'run'], cwd=os.path.join('..', '..'), stderr=subprocess.DEVNULL, preexec_fn=os.setsid) # noqa + env = os.environ.copy() + env['H2O_WAVE_RECONNECT_TIMEOUT'] = "0s" + wave_server = subprocess.Popen(['make', 'run'], cwd=os.path.join('..', '..'), stderr=subprocess.DEVNULL, preexec_fn=os.setsid, env=env) # noqa time.sleep(1) retries = 3