Demo: ```js const s = signal(0); function inc() { s.value++; } export default function App() { return html` ${s} <button onclick=${inc}>Increment</button> `; } ``` When "Highlight updates" is enabled, I would expect the number to be highlighted every time it changes because I click on the button. https://user-images.githubusercontent.com/7000710/225608523-08a31b8f-98ff-45ad-8d58-4d8b9fe1669e.mov