From 4db5855b746b5d2c464fd9ef18d17dcbec7224f0 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 10 Jul 2025 12:18:20 +0200 Subject: [PATCH] Avoid line wrap in app summary of install dialog --- dashboard/src/components/AppInstallDialog.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dashboard/src/components/AppInstallDialog.vue b/dashboard/src/components/AppInstallDialog.vue index d6a71ecb4..4f27188ee 100644 --- a/dashboard/src/components/AppInstallDialog.vue +++ b/dashboard/src/components/AppInstallDialog.vue @@ -215,7 +215,8 @@ defineExpose({
{{ manifest.title }}
-
{{ $t('appstore.installDialog.lastUpdated', { date: prettyDate(app.creationDate) }) }} - Version {{ app.manifest.upstreamVersion }} - Website
+
{{ $t('appstore.installDialog.lastUpdated', { date: prettyDate(app.creationDate) }) }}
+
Version {{ app.manifest.upstreamVersion }} - Website
{{ $t('app.updates.info.packageVersion') }} {{ app.manifest.version }}
{{ $t('appstore.installDialog.memoryRequirement', { size: prettyBinarySize(manifest.memoryLimit || (256 * 1024 * 1024)) }) }}
@@ -308,6 +309,10 @@ defineExpose({ font-size: 14px; } +.summary > div { + text-wrap: nowrap; +} + .title { font-size: 32px; margin-bottom: 10px;