Skip to content

Commit

Permalink
Fix symbol in stream fields (#4122)
Browse files Browse the repository at this point in the history
  • Loading branch information
AitorAlgorta authored Sep 11, 2023
1 parent f5ffce3 commit 06dd402
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const Creation = (props: ListModeProps) => {
fields.forEach(field => {
formatedFields.push({
name: field['name'],
newName: field['name'] + '-' + topic,
newName: field['name'] + '_' + topic,
});
});
return formatedFields;
Expand Down

0 comments on commit 06dd402

Please sign in to comment.