summary refs log tree commit diff stats
path: root/src/components
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-21 19:46:05 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-21 19:46:05 +0100
commitc0b29e4be7f0fff59934ef6e7c52dea2ee31e0b3 (patch)
treefb778c16a1abb7f785f56decb773dfdb2f879ab4 /src/components
parentfix(public/manifest.json): Use correct json list (diff)
downloadweb-client-c0b29e4be7f0fff59934ef6e7c52dea2ee31e0b3.zip
chore(version): v0.1.0 v0.1.0 prime
Diffstat (limited to 'src/components')
-rw-r--r--src/components/checkbox_placeholder.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/checkbox_placeholder.rs b/src/components/checkbox_placeholder.rs
index 2006808..27aac13 100644
--- a/src/components/checkbox_placeholder.rs
+++ b/src/components/checkbox_placeholder.rs
@@ -18,10 +18,7 @@ use leptos::{
 use crate::components::get_id;
 
 #[component]
-pub fn CheckboxPlaceholder(
-    label: &'static str,
-    node_ref: NodeRef<Input>,
-) -> impl IntoView {
+pub fn CheckboxPlaceholder(label: &'static str, node_ref: NodeRef<Input>) -> impl IntoView {
     let id = get_id();
 
     view! {