File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/devtools/components/main-content/object-store-view/table-settings Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
55
66## [ Unreleased]
77
8+ ### Fixed
9+
10+ - Load object store settings from local storage whenever the object store changes.
11+
812## [ 1.1.1] - 2025-12-10
913
1014### Fixed
Original file line number Diff line number Diff line change 33 createContext ,
44 createEffect ,
55 FlowProps ,
6- onMount ,
76 useContext ,
87} from "solid-js" ;
98import { createStore } from "solid-js/store" ;
@@ -40,7 +39,7 @@ export function TableSettingsContextProvider(props: FlowProps) {
4039 ) ;
4140 const { origin } = useOriginContext ( ) ;
4241 const { activeObjectStore } = useActiveObjectStoreContext ( ) ;
43- onMount ( ( ) => {
42+ createEffect ( ( ) => {
4443 const currentOrigin = origin ( ) ;
4544 const activeStore = activeObjectStore ( ) ;
4645 if ( currentOrigin && activeStore ) {
You can’t perform that action at this time.
0 commit comments