Skip to content

Commit

Permalink
#41 add recurring v one-time dropdowns for all relevant pages
Browse files Browse the repository at this point in the history
  • Loading branch information
katrina-cityofdetroit committed Jul 24, 2024
1 parent 743e889 commit 94f75bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/js/views/03_revenue/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,5 @@ function revRowOnEdit(){
// make it editable
Table.Cell.createTextbox('request', true);
Table.Cell.createTextbox('notes');
Table.Cell.createDropdown('recurring', ['One-Time', 'Recurring']);
}
1 change: 1 addition & 0 deletions src/js/views/05_overtime/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ function OTRowOnEdit(){
Table.Cell.createTextbox('OT-wages', true);
Table.Cell.createTextbox('OT-salary', true);
Table.Cell.createServiceDropdown(Services.list());
Table.Cell.createDropdown('recurring', ['One-Time', 'Recurring']);
}

export async function initializeOTTable(){
Expand Down
1 change: 1 addition & 0 deletions src/js/views/06_nonpersonnel/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,6 @@ function nonPersonnelRowOnEdit(){
// make it editable
Table.Cell.createTextbox('request', true);
Table.Cell.createServiceDropdown();
Table.Cell.createDropdown('recurring', ['One-Time', 'Recurring']);
}

0 comments on commit 94f75bc

Please sign in to comment.