Jean Claveau

Results 41 comments of Jean Claveau

Thanks a lot for your detailed answer. ## My little example I would first notice than my example wasn't meant to work perfectly but just to illustrate my purpose. Thus...

Thanks a lot, I'll let you know when it will work!

Good to know! Thanks for your fast answer

Duplicate of https://github.com/null-dev/firefox-profile-switcher/issues/5 ?

Same here from Flatpak on Kubuntu ```shell flatpak run com.github.Murmele.Gittyup --version Gittyup 1.0.0 lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.4 LTS Release: 20.04 Codename:...

@lmanzke Would you please rename the name of this bug including Crome / Chromium 97.0.4692.99. I lost half a day on it skipping this issue as it mentionned only Edge,...

@taniwallach It may be due to incremental update or config refreshed at startup. Now it works but I copy pasted my Chromium version (On Ubuntu 20.04) while the bug was...

Oh, my bad. If i understand well, this means that the `template` feature of the `Navigation` plugin never worked: https://github.com/VirtusLab-Open-Source/strapi-plugin-navigation/blob/master/server/utils/functions.ts#L80-L102

@dmcknight26 @MindaugasR Thank you for your solution, here is the Typescript support (also without lodash dependency): ```ts export const i18n = createI18n({ locale: `fr-FR`, legacy: false, warnHtmlMessage: false, messages, })...

This one works with ESM https://github.com/jd1378/is-internet-available ```js import { isInternetAvailable, InternetAvailabilityService } from 'is-internet-available' const googleIsReachable = await isInternetAvailable({ authority: 'https://accounts.google.com' }); if (! googleIsReachable) { ... } ```