Skip to content

Commit

Permalink
Merge pull request #723 from Hexlet/filter-show-resume-by-locale
Browse files Browse the repository at this point in the history
Filter show resume by locale
  • Loading branch information
amshkv committed Feb 7, 2024
2 parents 12049cc + 3bd79ee commit 71cc94e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/web/resumes_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def index
end

def show
@resume = Resume.web.find(params[:id])
@resume = Resume.web.with_locale.find(params[:id])
authorize @resume

@resume_answers = @resume.answers
Expand Down

0 comments on commit 71cc94e

Please sign in to comment.