Simon Lamon

Results 24 comments of Simon Lamon

`>` is being matched as the path of the url here: `([^:"\'\\s])`. https://github.com/xtermjs/xterm.js/blob/6c18b7f2cc91b923e765b03e572f9038e294d368/addons/xterm-addon-web-links/src/WebLinksAddon.ts#L18-L19

Notice how the dotted line is correctly drawn in the middle under a character. At the start and the end of the character it gets connected making it look more...

Most likely the same as https://github.com/home-assistant/frontend/issues/20611.

Based on the error description: This comes from the upgrade to full calendar v6.1.8 which changes the way the styling is done. https://github.com/fullcalendar/fullcalendar/commit/8a03db7e9d7e8e6598531a5b2fd9ccc6de30716b Seems to me that it's something in...

Very conceptual idea: I would implement this as an abstract class, let's say `LitElementWithUnload`, then let the `HaAutomationEditor` implement that. `LitElementWithUnload` should be responsible for knowing if the page is...

I'll see if I can put that idea into proof of concept code.

I can't seem to let this work in the lit framework. It's quite hard to catch it whenever the page is being destructed since it destructs top down starting with...

It's in the translations file: https://github.com/home-assistant/frontend/blob/dev/src/translations/en.json

Some older browsers still don't support the CSS logical properties (like margin-inline-start and margin-inline-end) and fallback to the margin-left and margin-right properties. Removing those will probably take away the margin...

That seems to work well indeed, thank you for the clarification. Shall I leave the issue open to add the documentation for the request-activation event?