Skip to content

Commit

Permalink
Fix preview on the Batch File tag when no column name has been chosen
Browse files Browse the repository at this point in the history
  • Loading branch information
jreyesr committed Jun 12, 2024
1 parent 1e89648 commit 1a77144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const templateTags = [{
{
name: 'batchFile',
displayName: 'Batch (File)',
liveDisplayName: ([colName, sample]) => (colName.value ? `CSV[${colName.value}] as File: ${sample.value}` : 'Batch'),
liveDisplayName: ([colName, sample]) => (colName.value ? `CSV[${colName.value}] as File: ${sample.value}` : 'Batch (File)'),
description: 'Placeholder for the Batch Requests plugin',
args: [
{
Expand Down

0 comments on commit 1a77144

Please sign in to comment.