Skip to content

Commit

Permalink
Update rest_api.js
Browse files Browse the repository at this point in the history
little fix
  • Loading branch information
alexqzh23 authored May 1, 2024
1 parent 0b75b2f commit ffc5e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/static/js/rest_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ $(function () {
let first_name = $("#customer_first_name").val();
let last_name = $("#customer_last_name").val();
let gender = $("#customer_gender").val();
let active = $("#customer_active").val() == "true";
let active = $("#customer_active").val() == "True";
let address = $("#customer_address").val();
let email = $("#customer_email").val();

Expand Down

0 comments on commit ffc5e11

Please sign in to comment.