Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
starswan committed Jan 10, 2025
1 parent 6d114af commit b9aa30e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/pdf_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def add_secondary_qualification_details(pdf, qualification)
secondary_qualification_data = [
["Subject:", result.subject],
["Grade:", result.grade],
(["Awarding Body:", result.awarding_body] unless result.awarding_body.blank?),
(["Awarding Body:", result.awarding_body] if result.awarding_body.present?),
["Year Awarded:", qualification.year],
].compact
render_table(pdf, secondary_qualification_data)
Expand Down

0 comments on commit b9aa30e

Please sign in to comment.