Bart Duisters
Bart Duisters
``` endTracking(completed: boolean) { if (this.currentWorkoutLog) { this.currentWorkoutLog.completed = completed; this.currentWorkoutLog.endedOn = new Date(); this.currentWorkoutLog = null; } this.workoutTracked = false; } ``` The above code is a workaround so...
I tried the JSFiddle, the reference to the docs and in a freshly generated Vite project. I seem to have the expected outcome on Safari (Version 15.4 (17613.1.17.1.13)). What version...
@robsontenorio Were you able to verify? If so, this issue can be closed.
> Hope I help you and if you have working oauth google and facebook strategies, please help me :) Facebook: https://docs.feathersjs.com/cookbook/authentication/facebook.html Google (not yet merged): https://github.com/feathersjs/docs/blob/495f82121ee22a5eca1f82bfa64c5c8e2bc1e518/cookbook/authentication/google.md
The .getProfile() method is not necessary if all the information you want is the information used in the recipe. I think the issue can be closed since the OP has...
> Absolutely, but it looks really good on a page. I tooled around for a while with responsive typography and found it is more of a problem then a bonus....
Edit: No need to clean, I picked it up. Just wondering - while learning qwik, you needed a material like styling, that's how you found beercss? I was taking a...
@findborg I was looking at the spec, I generated all tokens and I am now working with those. I currently have it implemented that all 'Large' versions of Display, Headline,...
https://github.com/beercss/beercss/pull/107 This is an initial proposal. I don't think I have the time to put in it to do it according to spec. It's still not clear to me how...
An example to get rid of the TypeScript warning in the template. ```html {@html $t('common.some-key', { link: 'https://code-coaching.dev' })} ``` 👆 This would show a TypeScript error on the `link:...