Skip to content

Commit

Permalink
web: trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackmorse committed Feb 27, 2024
1 parent b85618f commit 85c0ba1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- sqlBuilder/**
- web/**
- build.*
- Dockerfile_web
jobs:
build-web-docker-image:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions web/app/utils/CurrencyUtils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ object CurrencyUtils {
def currencyRate(country: Option[Country]): Double =
country.map(_.currencyRate).getOrElse(10.0)


def currencyName(country: Option[Country]): String =
country.map(_.currencyName).getOrElse("$")
}

0 comments on commit 85c0ba1

Please sign in to comment.