From 7274157a80c0b24e8a6c0da8260e95678f17cfe1 Mon Sep 17 00:00:00 2001 From: mathieu Date: Sat, 16 May 2026 02:42:29 +0200 Subject: [PATCH] fix(network-detail): wrap disabled attr in braces to fix pagination next button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The view! macro misparses `disabled=move || expr >= other` because >= without braces is ambiguous — the rest of the expression renders as text content. Fix: `disabled={move || ...}`. Co-Authored-By: Claude Sonnet 4.6 --- src/client/network_detail.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/network_detail.rs b/src/client/network_detail.rs index 7178fba..d1df471 100644 --- a/src/client/network_detail.rs +++ b/src/client/network_detail.rs @@ -122,7 +122,7 @@ pub fn NetworkDetailPage() -> impl IntoView { )}