Skip to content

Commit

Permalink
changed category input label
Browse files Browse the repository at this point in the history
  • Loading branch information
u-Kuro committed Sep 12, 2024
1 parent b255e71 commit fcdb7b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/build/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/build/bundle.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions src/components/Others/Search.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1892,12 +1892,13 @@
</label>
<input
id="category-name"
class="category"
class={"category"+ ($selectedCategory == null ? " title-and-logo" : "")}
type="text"
autocomplete="off"
placeholder="Category"
placeholder={$selectedCategory == null ? "Kanshi" : "Category"}
style:pointer-events="{editCategoryName ? "" : "none"}"
disabled="{!editCategoryName}"
aria-label={$selectedCategory == null ? "Title and Logo" : "Category"}
bind:value="{customCategoryName}"
on:focusin="{() => window.addHistory?.()}"
/>
Expand Down

0 comments on commit fcdb7b8

Please sign in to comment.