mirror of
https://github.com/apache/superset.git
synced 2026-05-07 00:44:26 +00:00
fix(fe/dashboard-list): display modifier info for Last modified data (#32035)
Signed-off-by: hainenber <dotronghai96@gmail.com>
(cherry picked from commit 88cf2d5c39)
This commit is contained in:
committed by
Michael S. Molina
parent
b2bd39cc28
commit
7aa4cd4eef
@@ -166,7 +166,7 @@ describe('DashboardList', () => {
|
||||
const callsD = fetchMock.calls(/dashboard\/\?q/);
|
||||
expect(callsD).toHaveLength(1);
|
||||
expect(callsD[0][0]).toMatchInlineSnapshot(
|
||||
`"http://localhost/api/v1/dashboard/?q=(order_column:changed_on_delta_humanized,order_direction:desc,page:0,page_size:25,select_columns:!(id,dashboard_title,published,url,slug,changed_by,changed_on_delta_humanized,owners.id,owners.first_name,owners.last_name,owners,tags.id,tags.name,tags.type,status,certified_by,certification_details,changed_on))"`,
|
||||
`"http://localhost/api/v1/dashboard/?q=(order_column:changed_on_delta_humanized,order_direction:desc,page:0,page_size:25,select_columns:!(id,dashboard_title,published,url,slug,changed_by,changed_by.id,changed_by.first_name,changed_by.last_name,changed_on_delta_humanized,owners,owners.id,owners.first_name,owners.last_name,tags.id,tags.name,tags.type,status,certified_by,certification_details,changed_on))"`,
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
@@ -119,11 +119,14 @@ const DASHBOARD_COLUMNS_TO_FETCH = [
|
||||
'url',
|
||||
'slug',
|
||||
'changed_by',
|
||||
'changed_by.id',
|
||||
'changed_by.first_name',
|
||||
'changed_by.last_name',
|
||||
'changed_on_delta_humanized',
|
||||
'owners',
|
||||
'owners.id',
|
||||
'owners.first_name',
|
||||
'owners.last_name',
|
||||
'owners',
|
||||
'tags.id',
|
||||
'tags.name',
|
||||
'tags.type',
|
||||
|
||||
Reference in New Issue
Block a user