From 1c098c72e9105e1ebf42d90fbba5b1043b1cc8db Mon Sep 17 00:00:00 2001 From: Darren Date: Thu, 8 May 2014 00:38:38 +0100 Subject: [PATCH] default app.text_theme should be object, not array --- client/src/models/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/models/application.js b/client/src/models/application.js index 277434d..e43a8e7 100644 --- a/client/src/models/application.js +++ b/client/src/models/application.js @@ -28,7 +28,7 @@ this.server_settings = options.server_settings || {}; this.translations = options.translations || {}; this.themes = options.themes || []; - this.text_theme = options.text_theme || []; + this.text_theme = options.text_theme || {}; // Best guess at where the kiwi server is if not already specified this.kiwi_server = options.kiwi_server || this.detectKiwiServer(); -- 2.25.1