@pierre-gilles in v5 on my iPhone, the names of the scenes in a dashboard are truncated rather than wrapping to multiple lines. Is it possible to adjust this?
Maybe it’s also possible to adjust the size of the start button?
For example, I see this:
Hi everyone!
This topic is now in development .
A PR has been opened to display the dashboard widget scene names on multiple lines on mobile:
master ← claude/scene-names-truncated-mobile-tos591
ouvert 08:56AM - 28 Aug 26 UTC
### Description
On mobile, scene names in the dashboard scene widget were cut w… ith an ellipsis: `.sceneName` forced the text on a single line (`white-space: nowrap` + `text-overflow: ellipsis`), so on a narrow screen only the first few words of a scene name were readable.
Changes in `front/src/components/boxs/scene/`:
- `style.css`: `.sceneName` no longer forces a single line — long names wrap on several lines, and `overflow-wrap: anywhere` handles very long names without spaces.
- `style.css` / `SceneRow.jsx`: the start / running-stop button is wrapped in a `.sceneAction` container with `flex: 0 0 auto`, so it keeps its natural size and is never squashed when a name takes several lines.
Checked on a 375px-wide viewport: a name like "Extinction de toutes les lumières du salon" now renders on two lines instead of "Extinction de toutes l…", the status line under the name is unchanged, and the "Démarrer" button stays the same size.
## Forum
Forum: https://community.gladysassistant.com/t/sur-mobile-noms-de-scenes-tronquees-dans-le-dashboard/10727
### Checklist
- [x] Tests pass: no server code changed; the change is CSS/markup only in the front
- [x] Linter and prettier pass on the changed files
- [x] No undocumented breaking change
Feel free to follow the PR, test (optional, especially for small requests) and provide your feedback here if needed.
I didn’t have this issue on Android