+
${footerEl}
diff --git a/src/renderer/src/stories/pages/globals.js b/src/renderer/src/stories/pages/globals.js
index 0ec23337d..4d16a4115 100644
--- a/src/renderer/src/stories/pages/globals.js
+++ b/src/renderer/src/stories/pages/globals.js
@@ -1 +1 @@
-export const sections = ["Project Structure", "Data Review", "Conversion Preview", "Final Review"];
+export const sections = ["Project Structure", "Data Entry", "Conversion Preview", "Upload & Review"];
diff --git a/src/renderer/src/stories/pages/guided-mode/GuidedStart.js b/src/renderer/src/stories/pages/guided-mode/GuidedStart.js
index 62235c912..666742215 100644
--- a/src/renderer/src/stories/pages/guided-mode/GuidedStart.js
+++ b/src/renderer/src/stories/pages/guided-mode/GuidedStart.js
@@ -3,6 +3,7 @@ import { Page } from "../Page.js";
import "./GuidedFooter";
import { InfoBox } from "../../InfoBox.js";
import { InspectorListItem } from "../../preview/inspector/InspectorList.js";
+import { sections } from "../globals.js";
export class GuidedStartPage extends Page {
constructor(...args) {
@@ -57,11 +58,11 @@ export class GuidedStartPage extends Page {
In the GUIDE, the process of running a conversion pipeline is broken into four high-level sections.
-
1. Project Structure
+ 1. ${sections[0]}
The first section will direct you to specify the high-level structure of your conversion pipeline, including data formats and global metadata.
- 2. Data Review
+ 2. ${sections[1]}
The second section will have you provide your source data files and NWB File metadata on a per-subject basis to populate your files.
@@ -86,17 +87,16 @@ export class GuidedStartPage extends Page {
— though you don't need to specify a value at the current stage.
- 3. Conversion Preview
+ 3. ${sections[2]}
In the third section, you will preview your conversion before uploading to DANDI.
- 4. Final Review
+ 4. ${sections[3]}
Finally, you will upload your conversion to DANDI and review the resulting Dandiset.
-
- Additional Resources
+ Additional Resources
${new InfoBox({
header: "Where can I learn more about the conversion process?",
diff --git a/src/renderer/src/stories/pages/guided-mode/data/GuidedSourceData.js b/src/renderer/src/stories/pages/guided-mode/data/GuidedSourceData.js
index 909a2f7d6..c732cc92d 100644
--- a/src/renderer/src/stories/pages/guided-mode/data/GuidedSourceData.js
+++ b/src/renderer/src/stories/pages/guided-mode/data/GuidedSourceData.js
@@ -24,8 +24,6 @@ const propsToIgnore = [
];
export class GuidedSourceDataPage extends ManagedPage {
-
-
constructor(...args) {
super(...args);
this.style.height = "100%"; // Fix main section
diff --git a/src/renderer/src/stories/pages/guided-mode/data/GuidedStructure.js b/src/renderer/src/stories/pages/guided-mode/data/GuidedStructure.js
index 79e05460e..6832405a1 100644
--- a/src/renderer/src/stories/pages/guided-mode/data/GuidedStructure.js
+++ b/src/renderer/src/stories/pages/guided-mode/data/GuidedStructure.js
@@ -142,7 +142,9 @@ export class GuidedStructurePage extends Page {
this.addButton.setAttribute("hidden", "");
return html`
- ${this.list} ${this.addButton}
+
+ ${this.list} ${this.addButton}
+
${this.searchModal}
`;
}
diff --git a/src/renderer/src/stories/pages/guided-mode/options/GuidedStubPreview.js b/src/renderer/src/stories/pages/guided-mode/options/GuidedStubPreview.js
index 75cc28a66..ea52056ab 100644
--- a/src/renderer/src/stories/pages/guided-mode/options/GuidedStubPreview.js
+++ b/src/renderer/src/stories/pages/guided-mode/options/GuidedStubPreview.js
@@ -17,7 +17,6 @@ export class GuidedStubPreviewPage extends Page {
constructor(...args) {
super(...args);
this.style.height = "100%"; // Fix main section
-
}
header = {
diff --git a/src/renderer/src/stories/pages/settings/SettingsPage.js b/src/renderer/src/stories/pages/settings/SettingsPage.js
index ce3729273..99139488b 100644
--- a/src/renderer/src/stories/pages/settings/SettingsPage.js
+++ b/src/renderer/src/stories/pages/settings/SettingsPage.js
@@ -31,8 +31,8 @@ export class SettingsPage extends Page {
if (!this.unsavedUpdates) return this.#openNotyf("All changes were already saved", "success");
this.save();
},
- })
- ]
+ }),
+ ],
};
constructor(...args) {
@@ -76,9 +76,7 @@ export class SettingsPage extends Page {
onThrow,
});
- return html`
- ${this.form}
- `;
+ return html` ${this.form} `;
}
}