Skip to content

Commit

Permalink
0.25.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomansion committed Oct 23, 2023
1 parent bdd233c commit f2f9aea
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion backend/swagger.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
swagger: "2.0"
info:
version: 0.25.2
version: 0.25.3
title: DebiAI_BACKEND_API
description: DebiAI backend api
contact:
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "debiai_frontend",
"version": "0.25.2",
"version": "0.25.3",
"description": "Frontend for Debiai, made with Vuejs",
"license": "Apache-2.0",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,8 @@ export default {
type: "values",
columnIndex: this.currentDrawnColorIndex,
values: [
"" + this.data.columns[this.currentDrawnColorIndex].uniques[selectionPoint.curveNumber],
"" +
this.data.columns[this.currentDrawnColorIndex].uniques[selectionPoint.curveNumber],
],
});
}
Expand Down Expand Up @@ -661,7 +662,8 @@ export default {
},
setBins() {
let colX = this.data.columns[this.columnXindex];
this.bins = colX.type == String ? colX.nbOccurrence : colX.nbOccurrence > 100 ? 100 : colX.nbOccurrence;
this.bins =
colX.type == String ? colX.nbOccurrence : colX.nbOccurrence > 100 ? 100 : colX.nbOccurrence;
},
},
computed: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ export default {
this.$parent.$on("redraw", this.checkPlot);
// Select default columns
this.selectedColumnsIds = this.data.columns.filter((c) => c.nbOccurrence <= 20).map((c) => c.index);
this.selectedColumnsIds = this.data.columns
.filter((c) => c.nbOccurrence <= 20)
.map((c) => c.index);
},
mounted() {
this.divParCat = document.getElementById("PCatDiv" + this.index);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ export default {
this.$parent.$on("filterCleared", this.filterCleared);
// Select default columns
this.selectedColumnsIds = this.data.columns.filter((c) => c.nbOccurrence > 1).map((c) => c.index);
this.selectedColumnsIds = this.data.columns
.filter((c) => c.nbOccurrence > 1)
.map((c) => c.index);
},
mounted() {
this.divParCord = document.getElementById("PCDiv" + this.index);
Expand Down

0 comments on commit f2f9aea

Please sign in to comment.