From 4ec4a2171cb5d8f0860a0dd13caa25c177496ddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Perek?= Date: Fri, 28 Aug 2026 11:27:02 +0000 Subject: [PATCH 1/3] pin network banner [ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Perek --- apps/sv/frontend/src/components/layout/NetworkBanner.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/sv/frontend/src/components/layout/NetworkBanner.tsx b/apps/sv/frontend/src/components/layout/NetworkBanner.tsx index 9564059df7..2de1e3de24 100644 --- a/apps/sv/frontend/src/components/layout/NetworkBanner.tsx +++ b/apps/sv/frontend/src/components/layout/NetworkBanner.tsx @@ -18,6 +18,9 @@ const NetworkBanner: React.FC = () => { alignItems="center" justifyContent="center" sx={{ + position: 'sticky', + top: 0, + zIndex: theme => theme.zIndex.appBar, backgroundColor: networkInstanceNameColor, color: 'black', height: '50px', From b44f7800a8834ba926e11ee085e9f1554ccef17b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Perek?= Date: Fri, 28 Aug 2026 13:26:30 +0000 Subject: [PATCH 2/3] scroll down to date time picker in the integration test [ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Perek --- .../splice/integration/tests/FrontendIntegrationTest.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/FrontendIntegrationTest.scala b/apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/FrontendIntegrationTest.scala index bd7411d1c1..632f0314b5 100644 --- a/apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/FrontendIntegrationTest.scala +++ b/apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/FrontendIntegrationTest.scala @@ -775,6 +775,7 @@ trait FrontendTestCommon extends TestCommon with WebBrowser with CustomMatchers clue(s"$party selects the date $dateTime") { val dateTimePicker = webDriver.findElement(By.id(pickerId)) eventually() { + webDriver.executeScript("arguments[0].scrollIntoView({block: 'center'});", dateTimePicker) dateTimePicker.clear() dateTimePicker.click() // Typing in the "filler" characters can mess up the input badly From c64b45ee5c18a5df9c9d29ff510f722f4a420135 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Perek?= Date: Fri, 28 Aug 2026 15:00:46 +0000 Subject: [PATCH 3/3] css [ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Perek --- apps/sv/frontend/src/components/layout/NetworkBanner.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/sv/frontend/src/components/layout/NetworkBanner.tsx b/apps/sv/frontend/src/components/layout/NetworkBanner.tsx index 2de1e3de24..04a8b11b27 100644 --- a/apps/sv/frontend/src/components/layout/NetworkBanner.tsx +++ b/apps/sv/frontend/src/components/layout/NetworkBanner.tsx @@ -21,6 +21,7 @@ const NetworkBanner: React.FC = () => { position: 'sticky', top: 0, zIndex: theme => theme.zIndex.appBar, + pointerEvents: 'none', backgroundColor: networkInstanceNameColor, color: 'black', height: '50px',