Connor Skees
Connor Skees
My workaround for my application was to return on mousedown events. ``` const handleChange = (event, newValue) => { if (event.type === 'mousedown') { return; } .... } ```
@Sweater-Baron, Great catch, however `navigator.platform` is [Deprecated](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/platform). I'm going to use the following ``` // FROM https://stackoverflow.com/questions/9038625/detect-if-device-is-ios const iOS = () => { const platform = navigator.userAgentData?.platform || navigator.platform; return...
A rough work around I've found is to use a in app browser instead of this framework for capacitor. Use the old "[InAppBrowser](https://ionicframework.com/docs/native/in-app-browser)". ``` const authUrl = `https://accounts.spotify.com/authorize?response_type=code&client_id=${SPOTIFY_CLIENT_ID}${ USER_SCOPES ?...
This is an update completing some of the [original draft MR](https://github.com/DRuggeri/nut_exporter/pull/35) to add a helm chart.
@acolombier I'm using [kubeadm](https://kubernetes.io/docs/reference/setup-tools/kubeadm/#:~:text=Kubeadm%20is%20a%20tool%20built,bootstrapping%2C%20not%20about%20provisioning%20machines) with [cilium](https://cilium.io/) as the CNI and I'm not have problems with an unprivileged, non-host network pod but it might be worth putting a note in the...