Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-08-26 20:59:43 +0300
committerGitHub <noreply@github.com>2022-08-26 20:59:43 +0300
commitf617796c3505c767ae1dec99ffc3c4415aaf4d16 (patch)
treecdf7b61522868eeec49991b89b5efd7dd2275499 /apps
parenteb8ac0b722e32a0d997c4eb9126536ac73846e6f (diff)
parentf53cac1b3289ea11522730ec402098db02c99321 (diff)
Merge pull request #33702 from nextcloud/bugfix/noid/fix-weather-icon
Diffstat (limited to 'apps')
-rw-r--r--apps/weather_status/src/App.vue7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/weather_status/src/App.vue b/apps/weather_status/src/App.vue
index bba51163ec8..e287df4f914 100644
--- a/apps/weather_status/src/App.vue
+++ b/apps/weather_status/src/App.vue
@@ -504,9 +504,9 @@ export default {
if (loading) {
return 'icon-loading-small'
} else {
- return weatherCode && weatherCode in weatherOptions
+ return 'icon-weather ' + (weatherCode && weatherCode in weatherOptions
? weatherOptions[weatherCode].icon
- : 'icon-fair-day'
+ : 'icon-fair-day')
}
},
getWeatherMessage(weatherCode, temperature, later = false) {
@@ -523,6 +523,9 @@ export default {
</script>
<style lang="scss">
+.icon-weather {
+ background-size: 16px;
+}
.icon-weather-status {
background-image: url('./../img/app-dark.svg');
}