Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(localization): localize legacy pivot table #22677

Merged
merged 1 commit into from
Apr 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion superset/viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
import simplejson as json
from dateutil import relativedelta as rdelta
from flask import request
from flask_babel import lazy_gettext as _
from flask_babel import gettext as __, lazy_gettext as _
from geopy.point import Point
from pandas.tseries.frequencies import to_offset

Expand Down Expand Up @@ -1004,6 +1004,7 @@ def get_data(self, df: pd.DataFrame) -> VizData:
values=metrics,
aggfunc=aggfuncs,
margins=self.form_data.get("pivot_margins"),
margins_name=__("Total"),
)

# Re-order the columns adhering to the metric ordering.
Expand Down