Egor G
Egor G
The old one returns 404.
It's possible to have colorful diff for previous (red) and current (green) values: console.log('%c before %c after', 'color:red', 'color: green')
it happens when a click handler passed directly as a closure: `...`
It only happens with computeds due to this line: https://github.com/mobxjs/mobx/blob/e60b36c9c78ff9871be1bd324831343c279dd69f/packages/mobx/src/core/computedvalue.ts#L91 Related discussion: https://github.com/mobxjs/mobx/discussions/3341
Hi, thank you for the nice project. Have you considered using ChatGPT to automatically generate commit title based on the diff? Currently commit title is the same everywhere and it's...
Steps to reproduce: - Open Telegram in full screen - Go to https://t.me/asmico_attach_bot - Click on `LikeBot t.me link` or `web_app_open_tg_link()` No redirect happens on MacOS app. On iOS app...
If you open confirm modal using `WebApp.showConfirm` it's opened below the mini app window making it completely invisible. The issue can only be reproduced in macos full screen mode (when...
According to TypeScript it's possible to use `addEventHandler` with 1 parameter but it's not clear how to unsubscribe from it then: ```js this.telegramClient.addEventHandler(this.onUnknownEvent); this.telegramClient.removeEventHandler(this.onUnknownEvent); // TS error - 2 arguments...
### Steps to reproduce: 1) Add the following code: ```js WebApp.onEvent("fullscreenChanged", () => { console.log('fullscreenChanged'); }); ``` 2) Click on Settings > Fullscreen ### Expected result: - Callback for fullscreenChanged...