run prettier(2.0.5) (#1438)

This commit is contained in:
Severiano Badajoz
2020-05-04 10:26:42 -07:00
committed by GitHub
parent b255e32548
commit 6cccc41c0f
118 changed files with 1979 additions and 1584 deletions
+9 -9
View File
@@ -1,7 +1,7 @@
const GraphSelection = (
state = {
tool: "lasso", // what selection tool mode (lasso, brush, ...)
selection: { mode: "all" } // current selection, which is tool specific
selection: { mode: "all" }, // current selection, which is tool specific
},
action
) => {
@@ -12,8 +12,8 @@ const GraphSelection = (
return {
...state,
selection: {
mode: "all"
}
mode: "all",
},
};
}
@@ -24,8 +24,8 @@ const GraphSelection = (
...state,
selection: {
mode: "within-rect",
brushCoords
}
brushCoords,
},
};
}
@@ -35,8 +35,8 @@ const GraphSelection = (
...state,
selection: {
mode: "within-polygon",
polygon
}
polygon,
},
};
}
@@ -47,8 +47,8 @@ const GraphSelection = (
return {
...state,
selection: {
mode: "all"
}
mode: "all",
},
};
}