Skip to content

Commit 4f6dee7

Browse files
committed
2927: Fixed labelledby
1 parent 8fedc87 commit 4f6dee7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/slide/content/poster/poster-single-search.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function PosterSingleSearch({
9595
hasSelectAll={false}
9696
value={locations}
9797
placeholder={t("single-search-placeholder")}
98-
labelledBy="single-search-select-locations"
98+
labelledBy={t("single-search-locations")}
9999
/>
100100
</Col>
101101
<Col>
@@ -112,7 +112,7 @@ function PosterSingleSearch({
112112
onChange={(newValue) => setOrganizations(newValue)}
113113
value={organizations}
114114
placeholder={t("single-search-placeholder")}
115-
labelledBy="single-search-select-organizations"
115+
labelledBy={t("single-search-organizations")}
116116
/>
117117
</Col>
118118
</Row>
@@ -130,7 +130,7 @@ function PosterSingleSearch({
130130
onChange={(newValue) => setTags(newValue)}
131131
value={tags}
132132
placeholder={t("single-search-placeholder")}
133-
labelledBy="single-search-select-tags"
133+
labelledBy={t("single-search-tags")}
134134
/>
135135
</Col>
136136
<Col>

src/components/slide/content/poster/poster-subscription-criteria.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function PosterSubscriptionCriteria({
7474
}
7575
value={subscriptionPlaceValue ?? []}
7676
placeholder={t("subscription-search-placeholder")}
77-
labelledBy="select-subscription-places"
77+
labelledBy={t("filters-place")}
7878
/>
7979
</div>
8080
</div>
@@ -99,7 +99,7 @@ function PosterSubscriptionCriteria({
9999
}
100100
value={subscriptionOrganizerValue ?? []}
101101
placeholder={t("subscription-search-placeholder")}
102-
labelledBy="select-subscription-organizers"
102+
labelledBy={t("filters-organizer")}
103103
/>
104104
</div>
105105
</div>
@@ -124,7 +124,7 @@ function PosterSubscriptionCriteria({
124124
}
125125
value={subscriptionTagValue ?? []}
126126
placeholder={t("subscription-search-placeholder")}
127-
labelledBy="select-subscription-tags"
127+
labelledBy={t("filters-tag")}
128128
/>
129129
</div>
130130
</div>

0 commit comments

Comments
 (0)