From 34219a6bdc0d23a0ca49ec1f7775cebeab17f79d Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Fri, 10 Jul 2026 14:41:30 +0100 Subject: [PATCH] fix: images now show full title --- src/App.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/App.vue b/src/App.vue index cb12684..443b662 100644 --- a/src/App.vue +++ b/src/App.vue @@ -179,4 +179,12 @@ function confirmDelete() { .export-root.exporting :deep(.macroplan) { overflow: visible; } +/* A PNG has no hover, so text that ellipses on screen (feature names, learning / + status notes) must wrap to its full length in the capture instead of being cut. + The column width is unchanged, so the milestone band stays aligned. */ +.export-root.exporting :deep(.namecell .truncate), +.export-root.exporting :deep(.learncell .note) { + white-space: normal; + overflow: visible; +}