Skip to content

Commit

Permalink
feat: fix url weather (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaZhem authored Jul 30, 2024
1 parent 0fa8766 commit f558cc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ export class WeatherComponent {
protected getImage(value: number): string {
const type = this.getTypeOfWeather(value);

return `url(/weather/${type}.jpg)`;
return `url(./weather/${type}.jpg)`;
}
}

0 comments on commit f558cc3

Please sign in to comment.