fix(other): column name in created content on profile page (#17029)

* fix: fix name in created content on profile page

* add more fix on mutater
This commit is contained in:
jinghua-qa 2021-10-11 08:21:05 -07:00 committed by GitHub
parent 14b7f6cdba
commit f2d41dc416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -33,14 +33,14 @@ class CreatedContent extends React.PureComponent<CreatedContentProps> {
const mutator = (data: Slice[]) =>
data.map(slice => ({
slice: <a href={slice.url}>{slice.title}</a>,
favorited: moment.utc(slice.dttm).fromNow(),
_favorited: slice.dttm,
created: moment.utc(slice.dttm).fromNow(),
_created: slice.dttm,
}));
return (
<TableLoader
dataEndpoint={`/superset/created_slices/${this.props.user.userId}/`}
className="table-condensed"
columns={['slice', 'favorited']}
columns={['slice', 'created']}
mutator={mutator}
noDataText={t('No charts')}
sortable
@ -52,8 +52,8 @@ class CreatedContent extends React.PureComponent<CreatedContentProps> {
const mutator = (data: Dashboard[]) =>
data.map(dash => ({
dashboard: <a href={dash.url}>{dash.title}</a>,
favorited: moment.utc(dash.dttm).fromNow(),
_favorited: dash.dttm,
created: moment.utc(dash.dttm).fromNow(),
_created: dash.dttm,
}));
return (
<TableLoader
@ -61,7 +61,7 @@ class CreatedContent extends React.PureComponent<CreatedContentProps> {
mutator={mutator}
dataEndpoint={`/superset/created_dashboards/${this.props.user.userId}/`}
noDataText={t('No dashboards')}
columns={['dashboard', 'favorited']}
columns={['dashboard', 'created']}
sortable
/>
);