diff options
Diffstat (limited to 'web/js/nms-ui-boxes.js')
-rw-r--r-- | web/js/nms-ui-boxes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/js/nms-ui-boxes.js b/web/js/nms-ui-boxes.js index 3ed65cd..ac4445e 100644 --- a/web/js/nms-ui-boxes.js +++ b/web/js/nms-ui-boxes.js @@ -166,7 +166,7 @@ class nmsPanel extends nmsBox{ /* Mainly just to make the constructor more readable. */ makeHeading(title) { var titleObject = new nmsBox("div",{html:{classList: ["panel-heading"]}}); - this._titleText = new nmsBox("p",{html:{textContent: title}}); + this._titleText = new nmsBox("h4",{html:{textContent: title}}); var closeButton = new nmsBox("button"); closeButton.html.className = "close"; closeButton.panel = this; |