Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #25 from AitorDB/bugfix/display-wrong-time
Browse files Browse the repository at this point in the history
Fix incorrect time
  • Loading branch information
AitorDB committed May 18, 2021
2 parents 9e54b2f + 3f40c86 commit c90054b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cardContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class SunCardContent {
</div>
<div class="sun-card-text-container">
<span class="sun-card-text-subtitle">${localization.Sunset}</span>
${data?.times.sunset ? this.generateTime(data.times.dawn) : ''}
${data?.times.sunset ? this.generateTime(data.times.sunset) : ''}
</div>
</div>
`
Expand Down

0 comments on commit c90054b

Please sign in to comment.