You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ju...@apache.org on 2023/08/31 20:24:15 UTC

[superset] branch master updated: fix(sqllab): invalid reducer key name (#25152)

This is an automated email from the ASF dual-hosted git repository.

justinpark pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 06bf44a823 fix(sqllab): invalid reducer key name (#25152)
06bf44a823 is described below

commit 06bf44a8230d56ab2ad9164000969542a003f0b4
Author: JUST.in DO IT <ju...@airbnb.com>
AuthorDate: Thu Aug 31 13:24:08 2023 -0700

    fix(sqllab): invalid reducer key name (#25152)
---
 superset-frontend/src/views/store.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/views/store.ts b/superset-frontend/src/views/store.ts
index f1aa94170b..55df81c588 100644
--- a/superset-frontend/src/views/store.ts
+++ b/superset-frontend/src/views/store.ts
@@ -123,7 +123,7 @@ const CombinedDatasourceReducers = (
 
 const reducers = {
   sqlLab: sqlLabReducer,
-  localStorageUsage: noopReducer(0),
+  localStorageUsageInKilobytes: noopReducer(0),
   messageToasts: messageToastReducer,
   common: noopReducer(bootstrapData.common),
   user: userReducer,