Martin Nyolt

Results 17 comments of Martin Nyolt

AFAICT, the issue is that tabs add themselves to the tabset on creation, the tabset just pushes each tab at the end of list. This leads to this behaviour -...

I also have the same use-case. Our cluster team does not want to install reloader globally with cluster-level permissions. So we want to go ahead and install it in our...

In addition, it would also be really helpful to see the original stack trace, so it is easy to navigate to the code throwing the wrong exception.

I also tried to find a good replacement for `createSpyObj`. What I settled for (for now) is to use `vi.fn(class …)` and `MockedObject`. First, instead of `createSpyObj('UsersService', ['query'])` (in every...

This is still an issue and will become more and more noticeable when people switch to Angular 21, which promotes Zoneless, and uses this as the default for new projects....

I could fix the tooltip issue with the following directive: ```ts import {Directive, inject} from '@angular/core'; import {PositioningService} from 'ngx-bootstrap/positioning'; import {TooltipDirective} from 'ngx-bootstrap/tooltip'; @Directive({ // eslint-disable-next-line @angular-eslint/directive-selector selector: '[tooltip]',...