Skip to content

Commit 205f93c

Browse files
committed
Basic html updates to fix warnings
1 parent 53357b1 commit 205f93c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
projectVersion=4.1.49
1+
projectVersion=4.1.50
22
org.gradle.configuration-cache=false

src/frontend/src/App.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ export default function App() {
239239
<div className="relative">
240240
<Search className={`absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 ${theme === 'dark' ? 'text-gray-500' : 'text-gray-400'}`} />
241241
<input
242+
id="soundSearch"
242243
type="text"
243244
placeholder="Search sounds..."
244245
value={searchQuery}
@@ -263,8 +264,9 @@ export default function App() {
263264

264265
{/* Category Filter and Playback Info */}
265266
<div className="mb-4 flex items-center gap-3 flex-wrap">
266-
<label className={theme === 'dark' ? 'text-gray-300' : 'text-gray-700'}>Category</label>
267+
<label for="categorySelect" className={theme === 'dark' ? 'text-gray-300' : 'text-gray-700'}>Category</label>
267268
<select
269+
id="categorySelect"
268270
value={selectedCategory}
269271
onChange={(e) => {
270272
setSelectedCategory(e.target.value);

0 commit comments

Comments
 (0)