Robert Carcassés Quevedo
Robert Carcassés Quevedo
Hi @jrpersico, first thing I notice is that you are adding elements to `cytoscape` both with `cy-elements` and manually in the `preConfig` hook, this would lead to unpredicted behaviour. I...
Hi @jrpersico, sorry but I can't see an issue with `vue-cytoscape` itself here. The only help I can provide you I guess is to comment you that I personally have...
Hi @pkovanen , sorry for the late reply. Cytoscape is mounted in a `div` created here: https://github.com/rcarcasses/vue-cytoscape/blob/58af89b97a528bda9b1e20ed48822d3e6c499077/src/components/Cytoscape.ts#L26 which has a very basic styling as to work by default. I'm not...
Hi @glisteningly, sorry for late reply. I think the modification you did is a good one, I'll test it locally and consider it for next release (feel free to open...
you are mutating the array here: ``` ... this.elements.splice(i, 1); ``` instead, reassign it and (I think) it should work: ``` this.elements = .... ```
is hard to know what could be wrong without a piece of testable code, can you provide such? also, are you using ``:key="`${def.data.id}`"`` in the `cy-element`s?
ok, I'll take a look later, this ``"`${var}`"`` notation is just [template literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) which allows for string interpolation.
@bornytm is your issue finally solved after updating?
Hi @TJBrunson, > How can I get the layout to auto update after elements are added? After you add an element you can call `layout()` again. Check the [`addNode` method...
Hey guys, sorry for being off but currently I have little time to maintain this. @aentwist I'm happy to hear you/your company are considering to opt in as a maintainer,...