From 8b6029564e624f07ae81e69bc86513f41fcd5f3c Mon Sep 17 00:00:00 2001 From: "julia.kirschenheuter" Date: Tue, 22 Aug 2023 13:05:41 +0200 Subject: Create right table view Signed-off-by: julia.kirschenheuter --- apps/settings/src/components/AppList.vue | 86 +++++++++++++++++++++++++------- 1 file changed, 68 insertions(+), 18 deletions(-) (limited to 'apps/settings/src/components/AppList.vue') diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue index 8bcecc8823d..875ba67fc8d 100644 --- a/apps/settings/src/components/AppList.vue +++ b/apps/settings/src/components/AppList.vue @@ -38,7 +38,24 @@ {{ t('settings', 'All apps are up-to-date.') }} - + + + + {{ t('settings', 'Icon') }} + + + {{ t('settings', 'Name') }} + + + {{ t('settings', 'Version') }} + + + {{ t('settings', 'Level') }} + + + {{ t('settings', 'Actions') }} + + - + + + {{ t('settings', 'Icon') }} + + + {{ t('settings', 'Name') }} + + + {{ t('settings', 'Version') }} + + + {{ t('settings', 'Level') }} + + + {{ t('settings', 'Actions') }} + + - + @@ -240,9 +275,24 @@ export default { const limit = pLimit(1) this.apps .filter(app => app.update) - .map(app => limit(() => this.$store.dispatch('updateApp', { appId: app.id })) + .map(app => limit(() => this.$store.dispatch('updateApp', { appId: app.id })), ) }, }, } + + -- cgit v1.2.3