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

View File

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