Skip to content

Commit 716e8f7

Browse files
committed
Fix app data visualization
1 parent 32ed8ac commit 716e8f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/participants_controller.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def show
7979
if current_user.administrator?
8080
add_breadcrumb 'Participants', :participants_path
8181
add_breadcrumb @user.username, participant_path(@user)
82-
@app_data = JSON.pretty_generate(JSON.parse(current_user.user_app_data.to_json))
82+
@app_data = JSON.pretty_generate(JSON.parse(@user.user_app_data.to_json))
8383
else
8484
add_breadcrumb 'My stats', participant_path(@user)
8585
end

0 commit comments

Comments
 (0)