Browse Source

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>
pull/40992/head
Grigorii K. Shartsev 2 years ago
parent
commit
f439505816
  1. 4
      apps/weather_status/src/App.vue

4
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')
},

Loading…
Cancel
Save