aboutsummaryrefslogtreecommitdiff
path: root/src/js/ui/sections/stellarDataConfigSection.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/ui/sections/stellarDataConfigSection.js')
-rw-r--r--src/js/ui/sections/stellarDataConfigSection.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/js/ui/sections/stellarDataConfigSection.js b/src/js/ui/sections/stellarDataConfigSection.js
index 268051f..a7816a1 100644
--- a/src/js/ui/sections/stellarDataConfigSection.js
+++ b/src/js/ui/sections/stellarDataConfigSection.js
@@ -20,12 +20,19 @@ export function stellarDataConfigSection()
{ element: "h2", innerText:"Data"}
]
};
+ var content = {
+ element: "div",
+ className: "content",
+ innerHTML: [
+ { element: "em", id:"stellar-data-config-not-found", innerText:"No data found (yet?)!" }
+ ]
+ };
var stellarDataConfigSection = {
element: "div",
id: "stellar-data-config",
innerHTML: [
whereAmI,
- { element: "em", id:"stellar-data-config-not-found", innerText:"No data found (yet?)!" }
+ content
]
};
makeElement(stellarDataConfigSection, document.querySelector('.main'));