regression fix

This commit is contained in:
Yuri Kuznetsov
2025-03-18 16:28:50 +02:00
parent 5e7a089cb0
commit fe99cf8db1
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ class AdminController extends Controller {
this.listenTo(view, 'rebuild', this.rebuild);
}, {
useStored: isReturn,
storageKey: key,
key: key,
});
}
+1 -1
View File
@@ -43,7 +43,7 @@ class GlobalStreamController extends Controller {
const view = new GlobalStreamView();
this.main(view, undefined, undefined, {
storageKey: key,
key: key,
useStored: isReturn,
});
}
+3 -3
View File
@@ -42,7 +42,7 @@ class StreamController extends Controller {
}
this.main('views/stream', {displayTitle: true}, undefined, {
storageKey: key,
key: key,
useStored: isReturn,
});
}
@@ -57,7 +57,7 @@ class StreamController extends Controller {
}
this.main('views/stream', {displayTitle: true, filter: 'posts'}, undefined, {
storageKey: key,
key: key,
useStored: isReturn,
});
}
@@ -72,7 +72,7 @@ class StreamController extends Controller {
}
this.main('views/stream', {displayTitle: true, filter: 'updates'}, undefined, {
storageKey: key,
key: key,
useStored: isReturn,
});
}