Skip to content

Commit

Permalink
Merge pull request #683 from alphagov/correct_junior_post_salary_range
Browse files Browse the repository at this point in the history
Display full salary ranges for junior posts in organograms
  • Loading branch information
edwardkerry authored Jul 11, 2019
2 parents 23aa6cd + f7888fa commit 07bd8d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/javascripts/organograms/org-data-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ var OrgDataLoader = {
var floor = post["Payscale Minimum (£)"] * 100 / 100;
var ceil = post['Payscale Maximum (£)'] * 100 / 100;

return formatMoney(floor) + " - " + formatMoney(floor);
return formatMoney(floor) + " - " + formatMoney(ceil);
}

function createJuniorPostNode(post, index){
Expand Down

0 comments on commit 07bd8d7

Please sign in to comment.