barelylit
(Barelylit)
January 15, 2026, 9:38am
1
When i am trying to add automations, the gui keeps closing the configuration box, if i refresh the page it will work for a short while then closes again on the next bit. This happens across three different browsers, and no plugins on browser
Small screen recording here to show
1 Like
Yoke
January 15, 2026, 10:53am
2
It was already reported to HA, I still am not sure why it takes for such “Major” issue to not be fixed ASAP. Anyway, pretty sure HA team is already working on it.
It has something to do with Browsers backing up to previous page. You might try changing browser.
opened 10:49AM - 09 Jan 26 UTC
closed 07:50AM - 15 Jan 26 UTC
### Checklist
- [x] I have updated to the latest available Home Assistant versi… on.
- [x] I have cleared the cache of my browser.
- [x] I have tried a different browser to see if it is related to my browser.
- [x] I have tried reproducing the issue in [safe mode](https://www.home-assistant.io/blog/2023/11/01/release-202311/#restarting-into-safe-mode) to rule out problems with unsupported custom resources.
### Describe the issue you are experiencing
I am unable to modify any existing automations or add any new ones because I cannot add any new actions, conditions or triggers. When in the individual automation page, when trying to add a trigger, condition, or action, whatever I click immediately redirects me back to the automation list.
I can modify existing automations triggers conditions and actions.
Nothing I can think has specifically caused this issue. This issue occurs in safe mode, in an incognito window and in other browsers.
This issue does NOT occur in the HA app.
### Describe the behavior you expected
I expect to be able to add new triggers/conditions/actions to new or existing automations.
### Steps to reproduce the issue
1. Go to automation page
2. Click on any automation
3. Click 'add trigger' / 'add condition' / 'add action'
4. Click on any category on the left, and any item on the right
5. Page immediately refreshes back to the automation list
This also happens for any new automations.
Video is attached.
### What version of Home Assistant Core has the issue?
core-2026.1.0
### What was the last working version of Home Assistant Core?
_No response_
### In which browser are you experiencing the issue?
Chrome Version 143.0.7499.192 (Official Build) (64-bit) / Firefox 146.0.1 (64 bit)
### Which operating system are you using to run this browser?
Ubuntu 25.10
### State of relevant entities
```txt
```
### Problem-relevant frontend configuration
```yaml
```
### JavaScript errors shown in your browser console/inspector
```txt
The only thing I can see on the developer console that pops up when I click on 'Device' (or anything on that RHS):
Invalid keyframe value for property transform: translateX(0px) translateY(NaNpx) scale(NaN)
This is a warning and not sure if this is relevant or not.
```
### Additional information
https://github.com/user-attachments/assets/60beb181-4077-44c5-967b-0ca183e18262
I have also had success with FireFox browser if you keep Developer Tools open on the side (F12). Chrome/Brave/Edge seem to not fix the issue.
barelylit
(Barelylit)
January 15, 2026, 11:25am
3
Cheers for this, I am using Zen which is Firefox fork, hadnt tried with the dev tools open will give that a shot thank you.
FWIW, it does work in the mobile app, that’s how im adding them at the moment
Yoke
January 15, 2026, 11:30am
4
Yes, mobile app doesn’t work like browser, there’s just something that triggers the “Back to previous tab” option in browsers.
Feel free to try Firefox with developer tools open, that might work.
barelylit
(Barelylit)
January 15, 2026, 11:39am
5
Fixed it with a small userscript to disable back button for now
// ==UserScript==
// @name HASS - Disable Back Button
// @namespace http://tampermonkey.net/
// @version 1.0
// @match http://192.168.0.4:8123/config/automation/dashboard
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Push a dummy state to prevent going back
history.pushState(null, null, location.href);
// Intercept back button and stay on current page
window.addEventListener('popstate', function(event) {
history.pushState(null, null, location.href);
});
})();
barelylit
(Barelylit)
January 15, 2026, 12:22pm
7
No need to hide the match, its an internal IP address