mirror of
https://github.com/moghtech/komodo.git
synced 2026-05-08 04:14:01 -05:00
[PR #1379] 2 small UI fixes #6948
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/moghtech/komodo/pull/1379
Author: @elemated
Created: 4/22/2026
Status: 🔄 Open
Base:
2.2.0← Head:fix/action-log-horizontal-scroll📝 Commits (3)
b7fee13fix: prevent horizontal page scroll on long action log lines4baf0a7Merge remote-tracking branch 'upstream/main' into fix/action-log-horizontal-scrollfb3e5b2fix: UI Defined and Files on Server text too large in stacks table📊 Changes
4 files changed (+9 additions, -9 deletions)
View changed files
📝
ui/src/components/file-source.tsx(+2 -2)📝
ui/src/components/updates/details.tsx(+2 -2)📝
ui/src/resources/action/last-run.tsx(+2 -2)📝
ui/src/resources/build/info.tsx(+3 -3)📄 Description
1) "UI Defined" and "Files on Server" text too big in stack view
Repo links were using a responsive fz class, but "UI Defined" and "Files on Server" did not. They were rendering at the default font size. (--mantine-font-size-sm vs --mantine-font-size-md)
Before:

After:

2) Log output containing very long single lines caused the entire page to scroll horizontally
Added white-space: pre wrap to a few places where logs are converted to HTML. In cases where logs printed a long single line, the line wasn't breaking.
action/last-run.tsx
Before (image 1: haven't scrolled yet, image 2: scrolled all the way to the right)


After:

Was not able to test changes for build/info.tsx as I don't use that feature, but have attached screenshots for the updates/details.tsx changes below as well. I believe they should all behave similarly.
Before (image 1: haven't scrolled yet, image 2: scrolled all the way to the right)


After:

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.