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

Commit c90054b

Browse files
authored
Merge pull request #25 from AitorDB/bugfix/display-wrong-time
Fix incorrect time
2 parents 9e54b2f + 3f40c86 commit c90054b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cardContent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class SunCardContent {
2929
</div>
3030
<div class="sun-card-text-container">
3131
<span class="sun-card-text-subtitle">${localization.Sunset}</span>
32-
${data?.times.sunset ? this.generateTime(data.times.dawn) : ''}
32+
${data?.times.sunset ? this.generateTime(data.times.sunset) : ''}
3333
</div>
3434
</div>
3535
`

0 commit comments

Comments
 (0)