Skip to content

Commit

Permalink
fix: show updated inventory name in production (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala authored Nov 7, 2024
1 parent f5453f0 commit d015087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/production/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ export default function ProductionConfiguration({ params }: PageProps) {
const input: SourceReference = {
_id: source._id.toString(),
type: 'ingest_source',
label: source.ingest_source_name,
label: source.name || source.ingest_source_name,
input_slot: firstEmptySlot(productionSetup)
};

Expand Down

0 comments on commit d015087

Please sign in to comment.