1
0
Fork 0
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:
Andrew Simachev 2025-05-07 19:58:56 +02:00
parent 1fdf4616c2
commit 49c0d995d7
No known key found for this signature in database
GPG key ID: 1DFE44B21443F0EF
5 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 805 B

After

Width:  |  Height:  |  Size: 452 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 785 B

Before After
Before After

View file

@ -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 () {

View file

@ -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);
};