From 1fff57bac9755b262ff1b997f0e2abd096d9d053 Mon Sep 17 00:00:00 2001 From: Ramin Tadayon Date: Wed, 28 Sep 2022 12:38:26 +0900 Subject: [PATCH] Persist column width changes to state --- src/plus/webviews/graph/graphWebview.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plus/webviews/graph/graphWebview.ts b/src/plus/webviews/graph/graphWebview.ts index 74da455..fb99a57 100644 --- a/src/plus/webviews/graph/graphWebview.ts +++ b/src/plus/webviews/graph/graphWebview.ts @@ -852,6 +852,7 @@ export class GraphWebview extends WebviewBase { let columns = this.container.storage.getWorkspace('graph:columns'); columns = updateRecordValue(columns, name, cfg); void this.container.storage.storeWorkspace('graph:columns', columns); + void this.notifyDidChangeColumns(); } private resetRepositoryState() {