mirror of
https://github.com/apache/superset.git
synced 2026-04-24 10:35:01 +00:00
[Bugfix] Issues with table filtering (#4073)
* Fixing some issues with table filtering * Added some comments
This commit is contained in:
committed by
Maxime Beauchemin
parent
af7cdeba4d
commit
1e79e9cd2a
@@ -13,8 +13,8 @@ export function clearFilter(sliceId) {
|
||||
}
|
||||
|
||||
export const REMOVE_FILTER = 'REMOVE_FILTER';
|
||||
export function removeFilter(sliceId, col, vals) {
|
||||
return { type: REMOVE_FILTER, sliceId, col, vals };
|
||||
export function removeFilter(sliceId, col, vals, refresh = true) {
|
||||
return { type: REMOVE_FILTER, sliceId, col, vals, refresh };
|
||||
}
|
||||
|
||||
export const UPDATE_DASHBOARD_LAYOUT = 'UPDATE_DASHBOARD_LAYOUT';
|
||||
|
||||
Reference in New Issue
Block a user