Skip to content

Commit

Permalink
End time column update (#3587)
Browse files Browse the repository at this point in the history
* PBENCH-1307
End time column update
  • Loading branch information
MVarshini authored and webbnh committed Jan 4, 2024
1 parent a69df3e commit d077497
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const NewRunsComponent = () => {
);
const columnNames = {
result: "Result",
endtime: "Endtime",
endtime: "Expiration Date",
};

/* Selecting */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ export const NewRunsRow = (props) => {
onDateSelect={props.onDateSelect}
/>
) : (
formatDateTime(item.metadata.server.deletion)
item.metadata.server.deletion
)}
</Td>
<Td
Expand Down Expand Up @@ -373,7 +373,7 @@ export const SavedRunsRow = (props) => {
onDateSelect={props.onDateSelect}
/>
) : (
formatDateTime(item.metadata.server.deletion)
item.metadata.server.deletion
)}
</Td>
<Td className="access">{item.metadata.dataset.access}</Td>
Expand Down

0 comments on commit d077497

Please sign in to comment.