From f2c86b6f0f07727436051285ee47db02adcbbb35 Mon Sep 17 00:00:00 2001
From: Alex Penczko <alex.penczko@sgalinski.de>
Date: Fri, 7 Feb 2025 15:45:19 +0100
Subject: [PATCH] [BUGFIX] remove aria label with typo

---
 Resources/Private/Partials/Filters/Dropdown.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Resources/Private/Partials/Filters/Dropdown.html b/Resources/Private/Partials/Filters/Dropdown.html
index b1f46d7..b7a8953 100644
--- a/Resources/Private/Partials/Filters/Dropdown.html
+++ b/Resources/Private/Partials/Filters/Dropdown.html
@@ -1,7 +1,7 @@
 <div class="sg-video-filter-container">
 	<label class="form-label" for="{pluginId}__{filter.name}__duration">
-		<select class="form-select form-select-md" aria-label=".form-select-md duration"
-				id="{pluginId}__{filter.name}__duration" name="{pluginId}__{filter.name}__duration">
+		<select class="form-select form-select-md"
+				id="{pluginId}__{filter.name}__duration" name="{pluginId}__{filter.name}__duration" autocomplete="off">
 			<option selected>{f:translate(key: filter.label)}</option>
 			<f:for each="{filter.options}" as="option">
 				<option value="{option.value}" {f:if(condition: '{filterValues.{filter.name}.duration} == {option.value}', then: 'selected')}>{f:translate(key: option.label)}</option>
-- 
GitLab