Skip to content
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

Filename title should use original filename #238

Merged
merged 3 commits into from
Jul 22, 2024

Conversation

dan-du-car
Copy link
Collaborator

@dan-du-car dan-du-car commented Jul 22, 2024

PR Details

Description

Update the historical data processing table to display filename with original filename.

Related GitHub Issue

#235

Related Jira Key

Motivation and Context

How Has This Been Tested?

NA

Types of changes

  • Defect fix (non-breaking change that fixes an issue)
  • New feature (non-breaking change that adds functionality)
  • Breaking change (fix or feature that cause existing functionality to change)

Checklist:

  • I have added any new packages to the sonar-scanner.properties file
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have read the CONTRIBUTING document.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

@@ -40,6 +40,7 @@ const ROS2RosbagRowItem = (props) => {
let isGreen = (column.id === "process_status" && props.ROS2RosbagRow.process_status === PROCESSING_STATUS.COMPLETED) || (column.id === "upload_status" && props.ROS2RosbagRow.upload_status === UPLOAD_STATUS.COMPLETED);
let isRed = (column.id === "process_status" && props.ROS2RosbagRow.process_status === PROCESSING_STATUS.ERROR) || (column.id === "upload_status" && props.ROS2RosbagRow.upload_status === UPLOAD_STATUS.ERROR);
let createdBy = column.id === "created_by" && props.ROS2RosbagRow?.user?.login !== undefined ? props.ROS2RosbagRow?.user?.login : "NA";
let isLowerCase = column.id === "process_status" || column.id === "upload_status";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we change this variable name to something like isStatus? Looks like its meant to indicate if the column is one of the status messages, instead of checking for if the value is in lower case

@dan-du-car dan-du-car merged commit e1e9c3b into release/neon Jul 22, 2024
16 checks passed
@dan-du-car dan-du-car deleted the bugfix_filename_lowercase branch July 22, 2024 15:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants