Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Missed camelCase transition
Browse files Browse the repository at this point in the history
  • Loading branch information
Callek committed Jun 15, 2015
1 parent eab16cc commit 643a1f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion relengapi/blueprints/slaveloan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def root():
'slaveloan_root.html',
url_for('.static', filename='slaveloan_root.js'),
machine_types=api.get_data(get_machine_classes),
loanRequestUrl=url_for("slaveloan.new_loan_request"),
loan_request_url=url_for("slaveloan.new_loan_request"),
)


Expand Down
2 changes: 1 addition & 1 deletion relengapi/blueprints/slaveloan/static/slaveloan_root.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ angular.module('slaveloan').controller('slaveloanController',
function($scope, restapi, initial_data) {
$scope.machineTypes = initial_data.machine_types;
$scope.user = initial_data.user.authenticated_email;
$scope.loanRequestUrl = initial_data.loanRequestUrl;
$scope.loanRequestUrl = initial_data.loan_request_url;

$scope.newLoan = {
ldap_email: $scope.user,
Expand Down

0 comments on commit 643a1f5

Please sign in to comment.