diff options
author | Grigorii K. Shartsev <me@shgk.me> | 2023-10-18 12:10:16 +0200 |
---|---|---|
committer | Grigorii K. Shartsev <me@shgk.me> | 2023-10-18 12:19:33 +0200 |
commit | f439505816fb48be163a1cb0f55c9f27623465ee (patch) | |
tree | 291df6f1772bb46c11b19216e023d88db97c6bec /apps/weather_status | |
parent | 9bdf98f699e8c484d19fd6210c50765f36bd08ee (diff) | |
download | nextcloud-server-f439505816fb48be163a1cb0f55c9f27623465ee.tar.gz nextcloud-server-f439505816fb48be163a1cb0f55c9f27623465ee.zip |
fix(weather_status): nextcloud/vue v8 migration - menu-title -> menu-name
Invalid prop name is inherited as an HTML attribute
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'apps/weather_status')
-rw-r--r-- | apps/weather_status/src/App.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/weather_status/src/App.vue b/apps/weather_status/src/App.vue index 32f645a1c2c..9bd217cd894 100644 --- a/apps/weather_status/src/App.vue +++ b/apps/weather_status/src/App.vue @@ -26,7 +26,7 @@ :default-icon="weatherIcon" :aria-hidden="true" :aria-label="currentWeatherMessage" - :menu-title="currentWeatherMessage"> + :menu-name="currentWeatherMessage"> <NcActionText v-if="gotWeather" :aria-hidden="true" :icon="futureWeatherIcon"> @@ -517,7 +517,7 @@ export default { ? weatherOptions[weatherCode].text( Math.round(this.getLocalizedTemperature(temperature)), this.temperatureUnit, - later + later, ) : t('weather_status', 'Set location for weather') }, |