Skip to content

Commit

Permalink
Release v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aarkue committed Oct 22, 2024
1 parent 645d0e9 commit 6624764
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ function VariableLabelToggle({
<button
onClick={() => {
const prevLabels = labels ?? {};
const prevLabel = prevLabels[variable] ?? "IGNORED";
const prevLabel = prevLabels[variable as number] ?? "IGNORED";
let newLabel: FilterLabel = "IGNORED";
if (prevLabel === "IGNORED") {
newLabel = "INCLUDED";
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/types/generated/BindingBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
import type { Constraint } from "./Constraint";
import type { EventVariable } from "./EventVariable";
import type { Filter } from "./Filter";
import type { FilterLabel } from "./FilterLabel";
import type { ObjectVariable } from "./ObjectVariable";
import type { SizeFilter } from "./SizeFilter";
import type { VariableLabel } from "./VariableLabel";

export type BindingBox = {
newEventVars: { [key: EventVariable]: Array<string> };
newObjectVars: { [key: ObjectVariable]: Array<string> };
filters: Array<Filter>;
sizeFilters: Array<SizeFilter>;
constraints: Array<Constraint>;
evVarLabels?: { [key: EventVariable]: VariableLabel };
obVarLabels?: { [key: EventVariable]: VariableLabel };
evVarLabels?: { [key: EventVariable]: FilterLabel };
obVarLabels?: { [key: EventVariable]: FilterLabel };
};
6 changes: 3 additions & 3 deletions tauri/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"distDir": "../dist/"
},
"package": {
"productName": "OCPQ-tauri",
"version": "0.6.1"
"productName": "OCPQ",
"version": "0.6.2"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -70,7 +70,7 @@
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "OCPQ (tauri)",
"title": "OCPQ (App)",
"width": 800
}
]
Expand Down

0 comments on commit 6624764

Please sign in to comment.