diff options
Diffstat (limited to 'apps/weather_status/src/weather-status.js')
-rw-r--r-- | apps/weather_status/src/weather-status.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/weather_status/src/weather-status.js b/apps/weather_status/src/weather-status.js index 576767b7d72..0e8135b2720 100644 --- a/apps/weather_status/src/weather-status.js +++ b/apps/weather_status/src/weather-status.js @@ -36,10 +36,6 @@ document.addEventListener('DOMContentLoaded', function() { OCA.Dashboard.registerStatus('weather', (el) => { const Dashboard = Vue.extend(App) - return new Dashboard({ - propsData: { - inline: true, - }, - }).$mount(el) + return new Dashboard().$mount(el) }) }) |