summaryrefslogtreecommitdiffstats
path: root/web/react/components/channel_loader.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-12-16 09:10:24 -0500
committerChristopher Speller <crspeller@gmail.com>2015-12-16 09:10:24 -0500
commit34e0ac00e81f5e8912e341e4fece3b38dbb6cf76 (patch)
tree1e67c2ce24f447e26d4abc63df28a3828c919e60 /web/react/components/channel_loader.jsx
parent3e418a100a3a491ebff7ba72ac003dd06752a30a (diff)
parent23af326af20cffef59ac8859e7def38f744a452b (diff)
downloadchat-34e0ac00e81f5e8912e341e4fece3b38dbb6cf76.tar.gz
chat-34e0ac00e81f5e8912e341e4fece3b38dbb6cf76.tar.bz2
chat-34e0ac00e81f5e8912e341e4fece3b38dbb6cf76.zip
Merge pull request #1733 from hmhealey/plt1437
PLT-1437 PreferenceStore api changes and fixing CreatePost warning
Diffstat (limited to 'web/react/components/channel_loader.jsx')
-rw-r--r--web/react/components/channel_loader.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/channel_loader.jsx b/web/react/components/channel_loader.jsx
index 0d1d9efd7..712d6885f 100644
--- a/web/react/components/channel_loader.jsx
+++ b/web/react/components/channel_loader.jsx
@@ -71,7 +71,7 @@ export default class ChannelLoader extends React.Component {
}
// if preferences have already been stored in local storage do not wait until preference store change is fired and handled in channel.jsx
- const selectedFont = PreferenceStore.getPreference(Constants.Preferences.CATEGORY_DISPLAY_SETTINGS, 'selected_font', {value: Constants.DEFAULT_FONT}).value;
+ const selectedFont = PreferenceStore.get(Constants.Preferences.CATEGORY_DISPLAY_SETTINGS, 'selected_font', Constants.DEFAULT_FONT);
Utils.applyFont(selectedFont);
$('body').on('mouseenter mouseleave', '.post', function mouseOver(ev) {