Skip to content

Commit

Permalink
Fix default menu items #2
Browse files Browse the repository at this point in the history
  • Loading branch information
f1nality committed Apr 29, 2017
1 parent 1e1ea92 commit 552191c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jet/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def get_menu_item_app(data):
def map_item(item):
item['items'] = item['models']
return item
app_list = map(map_item, original_app_list.values())
app_list = list(map(map_item, original_app_list.values()))

current_found = False

Expand Down

0 comments on commit 552191c

Please sign in to comment.