From 53016ead47dda2cb7e44be74334c3d09e26f4b1e Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Wed, 3 Apr 2024 10:22:47 +0200 Subject: [PATCH] Rename function --- src/component/form.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/component/form.lisp b/src/component/form.lisp index 4562eb3..e55131a 100644 --- a/src/component/form.lisp +++ b/src/component/form.lisp @@ -15,7 +15,7 @@ :remove-special-chars :clean-form-str :build-str-name - :build-value-str + :build-str-value :build-value-prop-str :build-class-str :build-id-str) @@ -83,7 +83,7 @@ NAME: The name attribute for the control. VALUE: The value attribute for the control." (check-type type checkable-element) (let* ((name-str (build-str-name name)) - (value-str (build-value-str value)) + (value-str (build-str-value value)) (value-prop-str (build-value-prop-str value)) (class-str (build-class-str "form-check-label" name)) (id-str (build-id-str name value)))