-
Notifications
You must be signed in to change notification settings - Fork 14
Hide hardware information in build log viewer drawer #1284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello! Thanks for your contribution.
Your change to remove the info from the log viewer seems correct to me (@MarceloRobert will check it in detail).
However we have to clean up this PR a bit. You add the package-lock.json and routetree.gen.ts files in, but they seem unrelated to the change we need to fix the issue.
Thanks again for your patch!!
dashboard/src/routeTree.gen.ts
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to change routeTree gen. Make sure you have the updated libraries by running pnpm install
in the frontend directory since this is an automatically generated file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe that the CI will fail but don't worry about it, we are still going to improve the way that GitHub handles forks (issue #1181) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some changes, and you still don't need to change package-lock and routeTree.gen
@@ -95,21 +95,23 @@ export const LogViewerCard = ({ | |||
) : ( | |||
<> | |||
<div> | |||
<span className="font-medium"> | |||
<div className="font-medium mb-2"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@MarceloRobert , I will make required changes
Also, sorry if my last comment was confusing but please do remove the poetry-lock and routeTree changes |
This PR will be closed for being stale. The issue will be continued on PR #1313 |
What does this PR do?
->Hides hardware information in the log viewer for build logs.
->Keeps hardware information visible for test logs.
->Cleans up the UI by removing unnecessary details for builds.
How was this done?
->Updated LogViewerCard to only show hardware info when the log type is not 'build'.
Closes #1283