Skip to content

Commit

Permalink
Initial state selection clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
will62794 committed Feb 26, 2024
1 parent 86e0e09 commit 124da12
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,10 @@ function stateSelectionPane(hidden){
return m("div", {id: "state-choices-pane", hidden: hidden}, [
// chooseConstantsPane(),
// m("h5", { id: "poss-next-states-title", class: "" }, (model.currTrace.length > 0) ? "Choose Next Action" : "Choose Initial State"),
m("div", { id: "initial-states", class: "tlc-state" }, componentNextStateChoices()),
m("div", { id: "initial-states", class: "tlc-state" }, [
model.currTrace.length === 0 ? m("div", {style: "padding:6px;"}, "Choose Initial State") : m("span"),
componentNextStateChoices()
]),
]);
}

Expand Down

0 comments on commit 124da12

Please sign in to comment.