Skip to content

Commit 8d8a53d

Browse files
committed
fix(search): update icon size to use integer instead of u32
chore(release): fix output matrix echoing in workflow
1 parent d736326 commit 8d8a53d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ jobs:
4545
| sort -u \
4646
| jq -R . \
4747
| jq -s -c .)
48-
49-
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
48+
fi
49+
50+
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
5051
5152
publish:
5253
name: Publish Changed Projects

crates/leptos/src/input/search.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub fn InputSearch(
5353
has_filter.then_some(concat!(BASE_CLASS, "-input-search--filter"))
5454
)
5555
>
56-
<SearchIcon size=24u32 />
56+
<SearchIcon size=24 />
5757
<input
5858
type="text"
5959
placeholder="Buscar"
@@ -64,7 +64,7 @@ pub fn InputSearch(
6464
<div class=concat!(BASE_CLASS, "-input-search__filter")>
6565
{has_filter.then(|| view! {
6666
<button on:click=move |_| set_filter_modal.update(|v| *v = !*v) tabindex="0">
67-
<FilterIcon size=24u32 />
67+
<FilterIcon size=24 />
6868
</button>
6969
})}
7070
<div

0 commit comments

Comments
 (0)