Skip to content

Commit

Permalink
feat: changed default feature model
Browse files Browse the repository at this point in the history
  • Loading branch information
st-vi committed Jan 11, 2024
1 parent e504fbd commit ca2c114
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion WebSocketClient/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,10 @@ export let globalEditor: editor.IStandaloneCodeEditor | null;


function getInitialFm() {
let initialFm = "features\n\tfeature1\n\t\tor\n\t\t\tfeature2\n\t\t\tfeature3\n\nconstraints\n\tfeature1";
let initialFm = `features
HelloWorld
optional
Greetings`;
const storedFm = window.localStorage.getItem("fm");
if (storedFm !== null) {
initialFm = storedFm;
Expand Down

0 comments on commit ca2c114

Please sign in to comment.