mirror of
https://github.com/apache/superset.git
synced 2026-04-24 18:44:53 +00:00
[eslint] changing to always-multiline on comma-dangle (#794)
This commit is contained in:
committed by
GitHub
parent
7bba9f73d0
commit
fa0497de5e
@@ -76,7 +76,7 @@ function parallelCoordVis(slice) {
|
||||
mouseover: function (d) {
|
||||
parcoords.highlight([d]);
|
||||
},
|
||||
mouseout: parcoords.unhighlight
|
||||
mouseout: parcoords.unhighlight,
|
||||
});
|
||||
// update data table on brush event
|
||||
parcoords.on("brush", function (d) {
|
||||
@@ -88,7 +88,7 @@ function parallelCoordVis(slice) {
|
||||
mouseover: function (d) {
|
||||
parcoords.highlight([d]);
|
||||
},
|
||||
mouseout: parcoords.unhighlight
|
||||
mouseout: parcoords.unhighlight,
|
||||
});
|
||||
});
|
||||
}
|
||||
@@ -101,7 +101,7 @@ function parallelCoordVis(slice) {
|
||||
|
||||
return {
|
||||
render: refresh,
|
||||
resize: refresh
|
||||
resize: refresh,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user