Adam Mackintosh

Results 6 comments of Adam Mackintosh

I was still getting these problems also, so I pasted the VueMarkdown.js file from node_modules into a new file. It's only one file with a bunch of imports, so I...

This can probably be fixed by applying these styles to that container: ``` css overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ``` That is also a borderline-unreasonable width for a dropdown...

I am looking for this myself now. I have a tree of checkboxes, so I need to show that a parent checkbox is neither selected nor unselected. (exactly like the...

I think that's a good solution to sidestep the problem. I was able to get my tree of checkboxes working with good UX without the indeterminate state. That is to...

Aha, this helped me solve my problem. My sub-menu was not opening in Vue 3, but the menu items were just passed in tersely: I'll just show my entire component....

Update: I fixed it with this: ``` import eslint from 'vite-plugin-eslint'; ... eslint({ // with pure default, eslint tries to lint external directories symlinked via `npm link` include: [ `${path.resolve(__dirname,...