fix: Initials do not display on notification avatars (#5803)

This commit is contained in:
Tom Moor
2023-09-09 21:01:14 -04:00
committed by GitHub
parent 80ef0a38d6
commit 5c839998c1
65 changed files with 238 additions and 165 deletions

View File

@@ -3,10 +3,10 @@ import find from "lodash/find";
import orderBy from "lodash/orderBy";
import reduce from "lodash/reduce";
import View from "~/models/View";
import BaseStore, { RPCAction } from "./BaseStore";
import RootStore from "./RootStore";
import Store, { RPCAction } from "./base/Store";
export default class ViewsStore extends BaseStore<View> {
export default class ViewsStore extends Store<View> {
actions = [RPCAction.List, RPCAction.Create];
constructor(rootStore: RootStore) {