From f9429dd2e666034324e3f50c6ec8c8ccb64cdc8e Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Thu, 15 Nov 2018 20:32:08 -0700 Subject: [PATCH] Move where passwordChar lives --- art/themes/luciano_blocktronics/theme.hjson | 4 +--- core/theme.js | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/art/themes/luciano_blocktronics/theme.hjson b/art/themes/luciano_blocktronics/theme.hjson index aa720934..d23904af 100644 --- a/art/themes/luciano_blocktronics/theme.hjson +++ b/art/themes/luciano_blocktronics/theme.hjson @@ -9,9 +9,7 @@ customization: { defaults: { - general: { - passwordChar: * - } + passwordChar: * dateTimeFormat: { short: MMM Do h:mm a diff --git a/core/theme.js b/core/theme.js index 2f88027e..6414da62 100644 --- a/core/theme.js +++ b/core/theme.js @@ -38,7 +38,7 @@ function refreshThemeHelpers(theme) { getPasswordChar : function() { let pwChar = _.get( theme, - 'customization.defaults.general.passwordChar', + 'customization.defaults.passwordChar', Config().theme.passwordChar );