frenzymind

Results 17 comments of frenzymind

Yes, here is output: ``` root@vega:~# drbdsetup events2 --timestamps --statistics --now 2019-08-18T02:29:24.637733+08:00 exists resource name:test_rd role:Secondary suspended:no write-ordering:flush 2019-08-18T02:29:24.637733+08:00 exists device name:test_rd volume:0 minor:1001 disk:UpToDate client:no quorum:yes size:1052408 read:2901248 written:0...

@pkubatrh thank you man! I just found the same solution. But I look at httpd.conf and there is string: `PerlSwitches -I./extlib/lib/perl5` and here I understand thing I have to do.

I have to manually check count of modals. My workaround: ```typescript const BODY_OPEN_MODAL_CLASS = 'modal-open'; @Injectable() export class NgxCustomBsModalService extends BsModalService { private rendererFactory = inject(RendererFactory2); private renderer2 = this.rendererFactory.createRenderer(null,...

May you please say the approximate period when this feature will be completed ? For now I have to use decorator `@Input` as workaround in mix with signals.

> I found a next version 20 on npmjs https://www.npmjs.com/package/ngx-bootstrap/v/20.0.0 Should I use next version in production or not ?

Unfortunately, usually it is long story... Funny: while I waiting for official v20 support, when it happened, angular v21 was released :D Hope, it will be faster this time.

I create directive to fix this: ```ts @Directive({ selector: '[appNumericInput]', }) export class NumericInputDirective implements AfterViewInit { private el = inject(ElementRef); ngAfterViewInit() { const inputs = this.el.nativeElement.querySelectorAll('input'); inputs.forEach(element => {...