Skip to content

Commit

Permalink
changed the filters to Created after
Browse files Browse the repository at this point in the history
  • Loading branch information
pnaik1 committed Jul 10, 2024
1 parent 3e07400 commit 6db9751
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const CompareRunTableToolbar: React.FC<FilterProps> = ({ ...toolbarProps }) => {
[FilterOptions.NAME]: 'Run',
[FilterOptions.EXPERIMENT]: 'Experiment',
[FilterOptions.PIPELINE_VERSION]: 'Pipeline version',
[FilterOptions.CREATED_AT]: 'Started',
[FilterOptions.CREATED_AT]: 'Created after',
[FilterOptions.STATUS]: 'Status',
}),
[],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import CreateExperimentButton from '~/concepts/pipelines/content/experiment/Crea

const options = {
[FilterOptions.NAME]: 'Experiment',
[FilterOptions.CREATED_AT]: 'Created',
[FilterOptions.CREATED_AT]: 'Created after',
};

export type FilterProps = Pick<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const PipelineRunTableToolbar: React.FC<PipelineRunTableToolbarProps> = ({
...(!pipelineVersionId && {
[FilterOptions.PIPELINE_VERSION]: 'Pipeline version',
}),
[FilterOptions.CREATED_AT]: 'Started',
[FilterOptions.CREATED_AT]: 'Created after',
[FilterOptions.STATUS]: 'Status',
}),
[experimentId, isExperimentsAvailable, pipelineVersionId],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const ManageRunsTable: React.FC<ManageRunsTableProps> = ({
[FilterOptions.NAME]: 'Run',
[FilterOptions.EXPERIMENT]: 'Experiment',
[FilterOptions.PIPELINE_VERSION]: 'Pipeline version',
[FilterOptions.CREATED_AT]: 'Started',
[FilterOptions.CREATED_AT]: 'Created after',
[FilterOptions.STATUS]: 'Status',
}}
{...filterProps}
Expand Down

0 comments on commit 6db9751

Please sign in to comment.