aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/web/js/components/RightPanel.react.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/js/components/RightPanel.react.js b/src/web/js/components/RightPanel.react.js
index bf352a61..3b625689 100644
--- a/src/web/js/components/RightPanel.react.js
+++ b/src/web/js/components/RightPanel.react.js
@@ -228,7 +228,8 @@ var Feed = React.createClass({
var content = null;
if(this.state.edit_mode) {
var categ_options = [];
- for(var cat_id in MenuStore._datas.categories) {
+ for(var index in MenuStore._datas.categories_order) {
+ var cat_id = MenuStore._datas.categories_order[index];
categ_options.push(
<option value={cat_id}
key={MenuStore._datas.categories[cat_id].id}>
bgstack15