wildhart

Results 75 comments of wildhart

Have either of you tried using [async search](https://vue-treeselect.js.org/#async-searching) so that the vue-treeselect component doesn't have to render all those items at the start?

Hi @chriscfoster, thanks for your interest. I tried that here, doesn't help: https://codepen.io/wildhart/pen/mdOvMbz autoSelectDescendants only effects the behaviour when selecting a parent in flat mode. This bug is different: ![image](https://user-images.githubusercontent.com/12505024/110977167-b6e29d00-83c6-11eb-8f2b-965ce09cc411.png)

@maitscha, looking at the comments on #835 it looks like this bug isn't fixed by that PR. Any other ideas for how to prevent the notifications showing on iOS when...

This is a simple fix - I've done it myself by cloning into my local `packages` folder and changing: * `package.js` and line 18 to 'sass': '1.49.0'. * `vue-sass.js` line...

I think `/deep/` is deprecated. Try `::v-deep` or `:deep` https://stackoverflow.com/questions/48032006/how-do-i-use-deep-or-or-v-deep-in-vue-js

In the end I started using PUG templates via [akryum:vue-pug](https://github.com/meteor-vue/vue-meteor/tree/master/packages/vue-pug). Pug compiles the templates into HTML without any extra whitespace, so problem solved. Still a valid question though...

@sebbean: ``` meteor remove akryum:vue-router2 meteor npm install --save vue-router ``` I've never used the akryum version, standard [vue-router](https://router.vuejs.org/) works perfectly well with Meteor 1.8

I think this is a duplicate of #352

@PieterHartzer Your code above will work if you replace `m(simpleDateFormat)` with `args.editor[m](simpleDateFormat)` The reason it wasn't working is that the `onEditorUpdate` function is called twice and the first time `args.editor.setDateFormat`...

I agree with this. Here's a few helper functions I've written for myself: ```js Jobs.findAndDelete = function(jobName, param) { const query = {}; if (jobName) query.name = jobName; if (param)...