Skip to content

Commit

Permalink
Merge pull request #38 from fewieden/develop
Browse files Browse the repository at this point in the history
Fix bye week translation
  • Loading branch information
fewieden committed Oct 9, 2020
2 parents d273e6b + 771f803 commit 3c59d72
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# MMM-NFL Changelog

## [1.1.1]

### Fixed

* Bye week translation https://github.com/fewieden/MMM-NFL/issues/37

## [1.1.0]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion MMM-NFL.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ Module.register('MMM-NFL', {
row.classList.add('row');

const date = document.createElement('td');
date.innerHTML = `${this.translate('WEEK')} ${this.details.w}`;
date.innerHTML = this.translate('WEEK', {weekNumber: this.details.w});
row.appendChild(date);

const team = document.createElement('td');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mmm-nfl",
"version": "1.1.0",
"version": "1.1.1",
"description": "National Football League Module for MagicMirror2",
"scripts": {
"lint": "./node_modules/.bin/eslint . && ./node_modules/.bin/stylelint ."
Expand Down

0 comments on commit 3c59d72

Please sign in to comment.