Benoît Moreau (ben.12)

Results 22 comments of Benoît Moreau (ben.12)

Same issue. My model contains a Duration instance. amDuration pipe does not work. ```javascript duration = moment.duration('P3M4D'); ``` ``` {{ duration | amLocale: 'fr' | amDuration: 'days' }} ``` display...

Solution may be to accept no argument like this: ```javascript transform(value: any, ...args: string[]): string { if (typeof args === 'undefined' || args.length !== 1) { // throw new Error('DurationPipe:...

My workaround: ```css .mat-form-field-appearance-outline .mat-form-field-prefix, .mat-form-field-appearance-outline .mat-form-field-suffix { place-self: center; } ```

Same for me. jspdf could be migrated to the version 2 ?

Workaround: Add in package-lock.json: ```json { ... "dependencies": { "orgchart": { "version": "2.1.10", "resolved": "https://registry.npmjs.org/orgchart/-/orgchart-2.1.10.tgz", "integrity": "sha512-jgiajUSq07XScAgHPwQeGJKPdDsHfr/ENbKcsEUyCjNOPDmw6XeO7fJ6GMaJ93jxs9P0sJktMUJr+e3gjorZmQ==", "requires": { "html2canvas": "^1.0.0-rc.5", "jquery": "^3.4.1", "jquery-mockjax": "^2.5.0", "jspdf": "^1.5.3" }, "dependencies": {...

Maybe fixed with 8c5427e74e6dde7b27b75a10fb803b62d6db067a ? (not tested)

Thanks, it work. My mistake was the OpenApi version (3.0.3 instead of 3.1.0). So this issue may be closed ?

Not fixed for me with Angular 16.1.0. Only the Bootstrap warning is fixed, not the "Empty sub-selector" described here.

Same for me. It works with eslint if I downgrade @typescript-eslint/parser from latest v6 to latest v5. eslint-plugin-sonarjs require an upgrade of @typescript-eslint/parser.