mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
fix webclipepr
This commit is contained in:
parent
1fdf4616c2
commit
49c0d995d7
5 changed files with 4 additions and 4 deletions
BIN
dist/extension/img/icon128x128.png
vendored
BIN
dist/extension/img/icon128x128.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 7.5 KiB |
BIN
dist/extension/img/icon16x16.png
vendored
BIN
dist/extension/img/icon16x16.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 805 B After Width: | Height: | Size: 452 B |
BIN
dist/extension/img/icon32x32.png
vendored
BIN
dist/extension/img/icon32x32.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 785 B |
|
@ -90,7 +90,7 @@ const Create = observer(class Create extends React.Component<I.PageComponent, St
|
|||
};
|
||||
|
||||
componentDidMount (): void {
|
||||
U.Data.createAllSubscriptions(() => this.init());
|
||||
U.Subscription.createAll(() => this.init());
|
||||
};
|
||||
|
||||
componentDidUpdate (): void {
|
||||
|
@ -173,7 +173,7 @@ const Create = observer(class Create extends React.Component<I.PageComponent, St
|
|||
|
||||
onSpaceChange (id: string): void {
|
||||
S.Common.spaceSet(id);
|
||||
U.Data.createAllSubscriptions();
|
||||
U.Subscription.createAll();
|
||||
};
|
||||
|
||||
getWrapperWidth () {
|
||||
|
|
|
@ -165,7 +165,7 @@ const Create = observer(class Create extends React.Component<I.PageComponent, St
|
|||
};
|
||||
|
||||
componentDidMount (): void {
|
||||
U.Data.createAllSubscriptions(() => {
|
||||
U.Subscription.createAll(() => {
|
||||
this.initSpace();
|
||||
this.initName();
|
||||
this.initType();
|
||||
|
@ -255,7 +255,7 @@ const Create = observer(class Create extends React.Component<I.PageComponent, St
|
|||
|
||||
onSpaceChange (id: string): void {
|
||||
S.Common.spaceSet(id);
|
||||
U.Data.createAllSubscriptions(() => this.forceUpdate());
|
||||
U.Subscription.createAll(() => this.forceUpdate());
|
||||
|
||||
Storage.set('lastSpaceId', id);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue