Update JS dependencies (#9255)
This is the result of `make npm-update`. I also fixed a minor linting issue which came up with the eslint 6.7 update.
This commit is contained in:
parent
e3081c667a
commit
d672206800
3 changed files with 1814 additions and 778 deletions
|
@ -250,16 +250,14 @@ export default function gitGraph(canvas, rawGraphList, config) {
|
|||
}
|
||||
}
|
||||
|
||||
/* eslint-disable-next-line */
|
||||
if (condensePrevLength < condenseCurrentLength
|
||||
&& ((nodePos = findColomn('*', currentRow)) !== -1
|
||||
&& ((nodePos = findColomn('*', currentRow)) !== -1 // eslint-disable-line no-cond-assign
|
||||
&& (findColomn('_', currentRow) === -1))) {
|
||||
flows.splice(nodePos - 1, 0, genNewFlow());
|
||||
}
|
||||
|
||||
/* eslint-disable-next-line */
|
||||
if (prevRowLength > currentRow.length
|
||||
&& (nodePos = findColomn('*', prevRow)) !== -1) {
|
||||
&& (nodePos = findColomn('*', prevRow)) !== -1) { // eslint-disable-line no-cond-assign
|
||||
if (findColomn('_', currentRow) === -1
|
||||
&& findColomn('/', currentRow) === -1
|
||||
&& findColomn('\\', currentRow) === -1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue