jokaorgua
jokaorgua
Had the same issue. The problem is in addEventListener('DOMContentLoaded'). For different reasons this event is not fired sometimes(in my case it was ajax request for the chart). @fxcosta Please think...
As a workaround you can add something like `var DOMContentLoaded_event = document.createEvent("Event"); DOMContentLoaded_event.initEvent("DOMContentLoaded", true, true); window.document.dispatchEvent(DOMContentLoaded_event);` to ajax call AFTER setting html to your divs with chart (works in Chrome...
I can confirm that since 4.2.5 (for mac) the download speed is too slow. I take the same torrent file on version 4.4.* and get 2.5MB/s at max I just...
@PriitUring how to understand which version of libtorrent am I using ? macos 12.5 MacBook Pro m1 pro Local ssd Tried the most popular torrent with 2k seeds
@PriitUring libtorrent 2.0.7.0 I took the same torrent and compared versions 4.2.5 and 4.4.4 torrent with size of 26GB when I used 4.2.5 everything was ok from the start until...
possible fix Add to UuidInterface ``` public function __serialize(): array; public function __unserialize(array $data): void; ```
@ramsey maybe this ticket should be closed and new one should be opened with 'Php 8.1 compatibility' subject?
Seems to me a lot of things will be changed to be compatible with PHP 8.1. Not only interface fixing but also the phpdocs for phpstan. That’s why I’ve suggested...
Thanks for the tip. Im already using tue DataCube in server vue. I’m more interested in solution for already compiled js code. Something like chart.dc.update but from js on the...
did small investigation. seems to me softdeletable does not support cascade: remove... because there is no B entity for deletion in UoW in doctrine