Juan J. Jimenez-Anca
                                            Juan J. Jimenez-Anca
                                        
                                    @GFoley83 I only use `ng2-select` on Bootstrap projects. I only include what I need though. For Bootstrap 4 I'd try adding just the dropdown (and perhaps the grid?)
I'm also experiencing this issue. @ingvagabund I'm not sure if the other users meant the same thing, but this is what's happening in my case: - some statefulsets use local...
also happy to help. Is there a branch for v2 we can start developing? Not being able to use kube-iam is bad for me
@davidchambers looking at your typescript definitions looks like you did a lot of work even if you weren't entirely sure it could be done. Thank you! I work in typescript...
Just following on my last comment, I have published the types in [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/sanctuary/index.d.ts). The first commit was just a port of what @davidchambers had started (thanks again for that!), except...
thank you @kke that makes sense. And if I just delete the helm chart from the `clusterconfig`, what happens? Is the chart uninstalled or is just ignored and I can...
@kke @jnummelin it's been some time but I can confirm that removing the helm chart from both the static and the dynamic config, still leaves the configuration hanging somewhere. I...
I finally managed how! For anyone with the same issue, there is a CDR called Chart (`charts.helm.k0sproject.io`), which is undocumented. It seems that one is created for each helm chart...
An alternative solution is to reload as per https://github.com/rust-lang/rls-vscode/issues/715 Newer versions may not suffer from this, although I've not tested it
I'm also caught by this issue. My workaround is to rely on typescript types for the dom: ```typescript function isAttr(attr: any): attr is Attr { return attr.constructor.name === 'Attr'; }...