From a646389cff34a21845bf562f14b3ca38cbacf987 Mon Sep 17 00:00:00 2001 From: Julius Härtl Date: Tue, 29 May 2018 17:25:07 +0200 Subject: Add tooltips MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- settings/src/components/appList/appItem.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'settings/src') diff --git a/settings/src/components/appList/appItem.vue b/settings/src/components/appList/appItem.vue index 3b0d7bc7267..7a9d3e9c9fa 100644 --- a/settings/src/components/appList/appItem.vue +++ b/settings/src/components/appList/appItem.vue @@ -40,7 +40,9 @@
{{ app.version }}
- {{ t('settings', 'Official') }} + + {{ t('settings', 'Official') }} Im Store anzeigen ↗
@@ -65,7 +67,7 @@ - + @@ -131,6 +133,12 @@ return t('settings','Download and enable'); } return t('settings','Enable'); + }, + enableButtonTooltip() { + if (this.app.needsDownload) { + return t('settings','The app will be downloaded from the app store'); + } + return false; } }, watchers: { -- cgit v1.2.3