Jonatan Kłosko

Results 340 comments of Jonatan Kłosko

@simonmcconnell fair use case, though in cases where there's a disabled submit button the user would need to blur explicitly, so that the validation runs and the button is back...

To clarify, this problem is not specific to `.livemd` files, since we use math in docstrings too. In Livebook we handle it by parsing with `parse_inline: false`, however when parsing...

I think the problem lies here: https://github.com/alexlafroscia/vite-plugin-handlebars/blob/281c36a9b90435676b62a26d83b6a5eff3c811bf/src/index.ts#L47-L55 Specifically, returning `[]` skips any further processing, meaning that postcss (hence tailwind) isn't triggered at all. I'm not sure how `handleHotUpdate` should look...

Hey @danielrw7, thanks for the PR :) As per the discussion I don't think we should have separate selections, but I'm still not convinced to prefilling the name in the...

We will definitely use focus wrap, but currently the focus already moves to modal when opened, but tabbing into a specific button and hitting enter does close the modal :thinking:

The issue is that when we open a modal with a click, LV takes a note of which element was clicked, then when we hit enter on a button, we...

At some point we may have a some public css/js utilities, however I'm not sure that we should include them in each kino assets bundle. If we did that, the...

Hey, the original fix from #7203 did work, however `process.stdin.resume()` has been reverted in #8700, and consequently broke it again. The simplest way to reproduce the issue is to create...

A similar story happened in rollup. It watched stdin, then `process.stdin.resume()` was removed in https://github.com/rollup/rollup/pull/2410, but then added back in https://github.com/rollup/rollup/pull/3493. See the commit description in https://github.com/rollup/rollup/commit/57bb54ea26bef7eab062925364158a4c478062f3 for more details....