Skip to content

feat: Redesign build logs #4734

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

Merged
merged 9 commits into from
Oct 25, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Kira Pilot <kira@coder.com>
  • Loading branch information
BrunoQuaresma and Kira-Pilot authored Oct 25, 2022
commit ef080c3088b2bf293d43d9c2bccd27fdf09cfc28
2 changes: 1 addition & 1 deletion site/src/components/BuildsTable/BuildDateRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface BuildDateRow {
date: Date
}

export const BuildDateRow: React.FC<BuildDateRow> = ({ date }) => {
export const BuildDateRow: FC<BuildDateRow> = ({ date }) => {
const styles = useStyles()
// We only want the message related to the date since the time is displayed
// inside of the build row
Expand Down