fix(ingestion): rename name column and filter to sources on the executions tab (#13704)

This commit is contained in:
v-tarasevich-blitz-brain 2025-06-09 04:47:15 +03:00 committed by GitHub
parent 83581dc14f
commit 7e72dca891
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -54,8 +54,8 @@ export default function ExecutionsTable({ executionRequests, setFocusExecutionUr
const tableColumns: Column<ExecutionRequestRecord>[] = [
{
title: 'Name',
key: 'name',
title: 'Source',
key: 'source',
render: (record) => <SourceColumn record={record} />,
width: '30%',
},

View File

@ -103,7 +103,7 @@ export default function SourceFilter({ defaultValues, onUpdate, hideSystemSource
onUpdate={onUpdateHandler}
options={options}
isMultiSelect
selectLabelProps={{ variant: 'labeled', label: 'Name' }}
selectLabelProps={{ variant: 'labeled', label: 'Source' }}
renderCustomOptionText={(option) => (
<NameColumn
type={option.item.type}