summaryrefslogtreecommitdiffstats
path: root/web/react/components/posts_view.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/posts_view.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/posts_view.jsx')
-rw-r--r--web/react/components/posts_view.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/posts_view.jsx b/web/react/components/posts_view.jsx
index cc4f5e138..e116fdeea 100644
--- a/web/react/components/posts_view.jsx
+++ b/web/react/components/posts_view.jsx
@@ -26,7 +26,7 @@ export default class PostsView extends React.Component {
this.wasAtBottom = true;
this.scrollHeight = 0;
- this.state = {displayNameType: PreferenceStore.getPreference(Preferences.CATEGORY_DISPLAY_SETTINGS, 'name_format', {value: 'false'}).value};
+ this.state = {displayNameType: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, 'name_format', 'false')};
}
static get SCROLL_TYPE_FREE() {
return 1;
@@ -44,7 +44,7 @@ export default class PostsView extends React.Component {
return 5;
}
updateState() {
- this.setState({displayNameType: PreferenceStore.getPreference(Preferences.CATEGORY_DISPLAY_SETTINGS, 'name_format', {value: 'false'}).value});
+ this.setState({displayNameType: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, 'name_format', 'false')});
}
isAtBottom() {
return ((this.refs.postlist.scrollHeight - this.refs.postlist.scrollTop) === this.refs.postlist.clientHeight);