Skip to content

Commit

Permalink
fix: update copy in experiment and trial headers (#10111)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtonG authored and thiagodallacqua-hpe committed Oct 28, 2024
1 parent 2302856 commit fc7ab89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ const ExperimentDetailsHeader: React.FC<Props> = ({
)}
</Spinner>
</Column>
<span>Experiment {experiment.id}</span>
<span>{capitalize(copyMap.experiment)} {experiment.id}</span>
<span role="experimentName">
{experiment.name}
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ const TrialHeaderLeft: React.FC<Props> = ({ experiment, trial }: Props) => {
<Icon decorative name="arrow-right" size="tiny" />
<div className={css.trial}>
<ExperimentIcons state={trial.state} />
<div>Trial {trial.id}</div>
<div>
{f_flat_runs ? 'Run' : 'Trial'} {trial.id}
</div>
{trial.logSignal &&
(trial.logSignal.length < labelMaxLength ? (
<Badge backgroundColor={hex2hsl(labelColor)} text={trial.logSignal} />
Expand Down

0 comments on commit fc7ab89

Please sign in to comment.