Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/.env
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
APP_ENV=prod
APP_SECRET={REGENERATE_SECRET}
APP_HASH={REGENERATE_SECRET}
APP_VERSION=1.0.3
APP_VERSION=1.0.4
###< symfony/framework-bundle ###

###> doctrine/doctrine-bundle ###
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function getLabel(): string

public function getAmount(): float
{
return $this->amount - $this->getFee();
return round($this->amount - $this->getFee(), 2);
}

public function getCreatedAt(): DateTime
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "expensave-frontend",
"version": "1.0.2",
"version": "1.0.4",
"scripts": {
"dev": "ng serve --host 0.0.0.0 --port 18002 --disable-host-check",
"analyze": "eslint src/",
Expand Down
Loading