austinw-fineart
austinw-fineart
Still reproducible as of Firefox 85.0 1. Go to https://material-components.github.io/material-components-web-catalog/#/component/drawer 2. Open Inspector 3. Change lang attribute to "zh" 4. The drawer icon shifts upwards
At the very least, I can confirm that the problem still exists. And yes, it occurs when I set the lang to zh or jp.
It does not occur with ar or he.
It only occurs in Firefox; Chromium browsers are perfectly fine. In fact, the problem is quite old now: https://bugzilla.mozilla.org/show_bug.cgi?id=1280900
I'd imagine this to be implemented as part of Material You support anyway since dynamic palettes need to be calculated at runtime as well.
Yep, it looks to be working. Closing as fixed.
This actually isn't an Nx specific issue but rather a Windows one, the cause of which is here: https://github.com/ngneat/transloco-keys-manager/blob/9affd8edebdf3520c9f499b73de88325d8ca7506/src/webpack-plugin/generate-keys.ts#L51-L54 The problem is that glob expressions must use POSIX paths, the...
This is caused by the textpattern plugin becoming part of the core from version 6 onward: https://www.tiny.cloud/docs/tinymce/latest/migration-from-5x/#text-patterns You can add `text_patterns: false` to your options to revert this. While this...
Another example: ``` var userId = 1; var now = DateTime.UtcNow; EFBatchOperation.For(db, db.Comments) .Where(x => x.UserId == userId && x.ReadAt == null) .Update(x => x.ReadAt, x => now); ```