diff --git a/apps/taiga-lumbermill/src/dashboards/iot/components/weather/weather.component.ts b/apps/taiga-lumbermill/src/dashboards/iot/components/weather/weather.component.ts index 761c59018..68473b96c 100644 --- a/apps/taiga-lumbermill/src/dashboards/iot/components/weather/weather.component.ts +++ b/apps/taiga-lumbermill/src/dashboards/iot/components/weather/weather.component.ts @@ -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)`; } }