From 23d95a756657d11e6a05e57990dce88c704b42a7 Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov Date: Sun, 9 Aug 2020 19:09:41 -0400 Subject: [PATCH] Add Pane to ForumApplication --- js/src/forum/ForumApplication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/forum/ForumApplication.js b/js/src/forum/ForumApplication.js index 690d0abe4..2b8d28636 100644 --- a/js/src/forum/ForumApplication.js +++ b/js/src/forum/ForumApplication.js @@ -121,7 +121,7 @@ export default class ForumApplication extends Application { m.mount(document.getElementById('header-secondary'), HeaderSecondary); m.mount(document.getElementById('composer'), { view: () => Composer.component({ state: this.composer }) }); - // this.pane = new Pane(document.getElementById('app')); + this.pane = new Pane(document.getElementById('app')); m.route.prefix = ''; super.mount(this.forum.attribute('basePath'));