Hugobox
Hugobox
With this momentary button template, you could acheive that: https://flows.nodered.org/flow/badf32e71913b09a2d8e2488a1b101a5
Hi @hindessm ! Any news on credentials re-authentication? Also wanted to mention that on every NR restart the Google calendar nodes complain that the google credentials are missing, even if...
@knolleary Can we hope for a google-cal credentials re-auth fix in the near future?
It might not be a major problem (for most) after you become aware of it trying to make sense of what is going on when you left a browser open...
And not refreshing after deploy not only affects Jquery code but also JS code for eventListeners, for example: ``` CLICKME const test = document.getElementById("test"); test.addEventListener('click', onclick, false); function onclick(ev) {...
Turns out any JS code (not linked with eventListeners) that uses "let" or "const" instead of "var" will display the error: Uncaught SyntaxError: Identifier 'X' has already been declared after...
Most modern browsers support "let" and "const" and it works well after a page refresh, it just goes to show that deploying without refreshing can cause problems. Turns out good...
Hi! Some more tests on windows/chrome. Tried to pinpoint when Dashboard currently displayed tab shifts: On F5 refresh: no shift location.reload();: no shift programamticaly via a button linked to function:...
I also had the same problem on Windows. My quickfix was changing line 101 of client.py to: artifact_p = f"{prefix}-{resp.answer_id}"
Ok found out that the client.py you get from pip install is not the latest, as this bug has been fixed in this merge: https://github.com/Stability-AI/stability-sdk/pull/67