fix: replace hardcoded string in poll history dialog (#30402)

This commit is contained in:
Florian Duros 2025-07-24 18:41:01 +02:00 committed by GitHub
parent 81edfece6a
commit 3af8273d6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,8 +120,8 @@ export const PollHistoryList: React.FC<PollHistoryListProps> = ({
value={filter}
onFilterChange={onFilterChange}
tabs={[
{ id: "ACTIVE", label: "Active polls" },
{ id: "ENDED", label: "Past polls" },
{ id: "ACTIVE", label: _t("right_panel|poll|active_heading") },
{ id: "ENDED", label: _t("right_panel|poll|past_heading") },
]}
/>
{!!pollStartEvents.length && (