Frederik Schubert

Results 9 comments of Frederik Schubert

Good question. I agree, globally changing should be the last option. From the python docs: > If, when coding a module for general use, you need a locale independent version...

Having the same problem. It looks similar to this one: https://github.com/tinymce/tinymce-vue/issues/223 Technologies differ except for tinymce. Issue relates to a non-visible input area (maybe because of grav admin input tabs?)

Wrapping [`tinymce.init`](https://github.com/newbthenewbd/grav-plugin-tinymce-editor/blob/4ce0143ed20e217263b99d7bddd38cc9e32dfb9b/templates/forms/fields/tinymce/tinymce.html.twig#L23) into a `window.setTimeout` resolves the issue for me here too. @newbthenewbd you want me to open a PR for this?

I just ran into the same issue. Fix by @kgilden worked for me with slight modification. #### What I wanted to archive: Out of 500 fixtures of doctrine entities, pick...

I had to switch from `node:alpine` back to `node:10-alpine` since Node 11 was released [lately](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V11.md#11.0.0).

Add this to your deploy configuration: ->composerInstallFlags('--prefer-dist --no-interaction --no-dev') This will disable the `--quiet` flag from composer. Most likely something went wrong there with `composer install`

You are right. I don't know how I missed the function... Unfortunately calling `invalidateSize` does not solve my display issue within a `NuxtPage` with a transition: ![grafik](https://user-images.githubusercontent.com/3531327/208099238-a305df4a-2224-4b0f-b0ad-14657addb9af.png) Without a transition:...

```vue import { LMap, LTileLayer, LLayerGroup } from '@vue-leaflet/vue-leaflet'; const map = ref(); const onReady = () => { if (this.map?.leafletObject?.ready) { // ... e.g. this.map.leafletObject.invalidateSize(); } } ``` this...

This indeed happens because the histoire styles are not in any css layer. As a workaround a custom vite plugin can be used in the `histoire.config.ts`: ```ts export default defineConfig({...