From b479e57446e56e08438a58309b8405bbda2146e6 Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Mon, 18 Nov 2024 11:49:45 -0800 Subject: [PATCH] Start assembly serial number at zero --- app-proto/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-proto/src/main.rs b/app-proto/src/main.rs index 8e8e4f0..d916a81 100644 --- a/app-proto/src/main.rs +++ b/app-proto/src/main.rs @@ -23,7 +23,7 @@ impl AppState { fn new() -> AppState { AppState { assembly: Assembly::new(), - assembly_serial: create_signal(1), + assembly_serial: create_signal(0), selection: create_signal(FxHashSet::default()) } }