-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add bowen to employees (#367) * Add Jenny to employees (#368) * [Fix] Mail Lost Default to Cash (#366) * initial commit for the mail lost option * changed the processing fee for mail lost * made the migrations for mail lost * reverted yarn lock to staging * mail lost default to cash * removed the extra other option * Add Jenn Chen * fix name * [Fix] Fix names being clipped in table cell content (#370) * Set overflow-y to visible for table content * Update employee email for testing * Update overflow property for requests table * move generate report button (#369) * Update permit form links (#373) Use the 2024 links for the permit replacement and application forms * [Fix] Force network call for accountant report download (#371) --------- Co-authored-by: Chinemerem <[email protected]> Co-authored-by: Keane Moraes <[email protected]> Co-authored-by: Jennifer Chen <[email protected]> Co-authored-by: Jenny Vong <[email protected]>
- Loading branch information
1 parent
53d690c
commit a645238
Showing
9 changed files
with
52 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
"editor.formatOnSave": true, | ||
"typescript.tsdk": "node_modules\\typescript\\lib" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,6 +74,11 @@ const employees = [ | |
lastName: 'Chigbo', | ||
email: '[email protected]', | ||
}, | ||
{ | ||
firstName: 'Bowen', | ||
lastName: 'Zhu', | ||
email: '[email protected]', | ||
}, | ||
{ | ||
firstName: 'Adil', | ||
lastName: 'Kapadia', | ||
|
@@ -94,6 +99,16 @@ const employees = [ | |
lastName: 'Sreekaran', | ||
email: '[email protected]', | ||
}, | ||
{ | ||
firstName: 'Jenny', | ||
lastName: 'Vong', | ||
email: '[email protected]', | ||
}, | ||
{ | ||
firstName: 'Jennifer', | ||
lastName: 'Chen', | ||
email: '[email protected]', | ||
}, | ||
]; | ||
|
||
/** | ||
|