File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/app/modules/time-clock/services Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ echo "Deploying $1..."
33docker ps -aq | xargs docker stop| xargs docker rm --force --volumes
44docker system prune -af
55aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin 568748651446.dkr.ecr.us-east-1.amazonaws.com
6- docker run -d --name timetracker_ui --env-file .aws. $2 .env -p 80:80 568748651446.dkr.ecr.us-east-1.amazonaws.com/time-tracker/$2 -ui:$1
6+ docker run -d --name timetracker_ui --env-file .$2 .aws .env -p 80:80 568748651446.dkr.ecr.us-east-1.amazonaws.com/time-tracker/$2 -ui:$1
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export class EntryService {
6464 findEntriesByProjectId ( projectId : string ) : Observable < Entry [ ] > {
6565 const startDate = this . getDateLastMonth ( ) ;
6666 const endDate = this . getCurrentDate ( ) ;
67- const findEntriesByProjectURL = `${ this . baseUrl } ?limit=2&project_id=${ projectId } &start_date=${ startDate } &end_date=${ endDate } ` ;
67+ const findEntriesByProjectURL = `${ this . baseUrl } / ?limit=2&project_id=${ projectId } &start_date=${ startDate } &end_date=${ endDate } ` ;
6868 return this . http . get < Entry [ ] > ( findEntriesByProjectURL ) ;
6969 }
7070
You can’t perform that action at this time.
0 commit comments