Skip to content

Commit

Permalink
Change to "ISA Wizard" instead of "MIAPPE Wizard"
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-koenig committed Dec 11, 2024
1 parent 777624e commit 07f65a5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ function showGui() {
<Investigation bind:value={$isaObj} />
{:else if $appstate === appstate.WIZARD}
<GenericQuestionnaire on:closeWizard={() => {$appstate = appstate.GUI;}} />
{:else if $appstate === appstate.LEVEL}
<Forms />
{:else if $appstate === appstate.GUI}
<Gui />
{/if}
{:else if $appstate === appstate.LEVEL}
<Forms />
{:else if $appstate === appstate.GUI}
<Gui />
{/if}
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@

<header class="flex-container">
<div class="flex-items" style="vertical-align: top;">
<img src="data/logo.png" alt="MIAPPE Wizard" />
<img src="data/logo.png" alt="ISA Wizard" />
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
<h1 on:click={()=>{$appstate = appstate.INIT}}>MIAPPE Wizard</h1>
<h1 on:click={()=>{$appstate = appstate.INIT}}>ISA Wizard</h1>
</div>

<div class="flex-items">
Expand Down
4 changes: 2 additions & 2 deletions src/components/InitView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
<div>
<img id="logo" src="data/logo.png" alt="MIAPPE Wizard Logo" />
<h1>Welcome to the MIAPPE Wizard</h1>
<p>A biologist-friendly application for creating MIAPPE-compliant metadata for plant phenotyping experiments.</p>
<button on:click|preventDefault={() => startWizardMode()}>Start Wizard mode</button> <br />
<!--<p>A biologist-friendly application for creating MIAPPE-compliant metadata for plant phenotyping experiments.</p>-->
<button on:click|preventDefault={() => startWizardMode()}>Start Questionnaire mode</button> <br />
<button on:click|preventDefault={() => addInvestigation()}>Start Expert mode</button> <br />
<button on:click|preventDefault={() => loadIsaFromJson()}>Load ISA-JSON from file</button>
</div>
Expand Down

0 comments on commit 07f65a5

Please sign in to comment.