holmberd
holmberd
Confirmed that updating to Catalina resolves this issue. As a side-note regarding MacOS setup build instructions. `brew install python@2 && brew link python@2 --force` Homebrew provided a python@2 formula until...
`onAuthStateChanged` is called when the user auth state changes and when the `firebase.auth` is first initialized. Does anyone know if `firebase.auth().currentUser` caches the user, with or without persistence enabled. Or...
@zerobytes I just wrap it in a promise before calling it from other services. ```js function getUser() { return new Promise((resolve, reject) => { let user = this.firebase.auth().currentUser; return user...
> What we intent to do with getCurrentUser() is having a promise which will await until firebase auth has actually finished the process of identifying the current user. This task...
@Thaina I have not experienced that issue. I initialize firebase before initializing any services depending on it. Could you show me an example of such behaviour to test?
This seem to be outdated. Any word on if this is actually supported? https://www.w3.org/wiki/images/b/b3/Schema.org-SoftwareApplicationsV2.pdf
setBackButtonVisibility(false); Seems that when used with 'panelload', it will currently only work the second time a panel with the header is loaded. Try using: ``` javascript $(".backButton").css("visibility", "visible"); $(".backButton").css("visibility", "hidden");...
Hi @bugre, yes that would be the correct logic. That is currently not the case for me, as I have two panels loaded before setting the header to visible, i.e...
My problem is similar but slightly different. I'm fetching the raw data with `include: [{ all: true }]`. But the returned raw data only returns a single result from the...
@uncedric it sure will, but I don't need the objects, only the raw data. From the docs: ``` // Are you expecting a massive dataset from the DB, // and...