aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Raphael Jenni <RaphaelJenni@users.noreply.github.com>2023-12-01 17:01:15 +0100
committerLibravatar GitHub <noreply@github.com>2023-12-01 09:01:15 -0700
commit734d6c961b33bf35eb7594f2408b28c19031cf03 (patch)
tree7242f6bcc0ae29248a807e7bd742a2e5bbff29a5 /src
parent6.6.1-nightly.14 [skip ci] (diff)
downloadferdium-app-734d6c961b33bf35eb7594f2408b28c19031cf03.tar.gz
ferdium-app-734d6c961b33bf35eb7594f2408b28c19031cf03.tar.zst
ferdium-app-734d6c961b33bf35eb7594f2408b28c19031cf03.zip
Fix persisting of todos sidebar width #1367 (#1460)
Diffstat (limited to 'src')
-rw-r--r--src/features/todos/store.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/todos/store.ts b/src/features/todos/store.ts
index 882fa6a1e..50704c73f 100644
--- a/src/features/todos/store.ts
+++ b/src/features/todos/store.ts
@@ -164,7 +164,7 @@ export default class TodoStore extends FeatureStore {
164 164
165 // Actions 165 // Actions
166 166
167 @action _resize = ({ width }) => { 167 @action _resize = (width: number) => {
168 this._updateSettings({ 168 this._updateSettings({
169 width, 169 width,
170 }); 170 });