Skip to content

Commit

Permalink
Add type column to NeoCSVData>>#gtViewHeaderFor:
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvc committed Dec 4, 2023
1 parent b2f0f65 commit b0047d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion repository/Neo-CSV-GT/NeoCSVData.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ NeoCSVData >> gtViewHeaderFor: composite [
priority: 30;
items: [ self header ];
column: 'Position' text: [ :_ :position | position ];
column: 'Field' text: #yourself weight: 5
column: 'Field' text: #yourself weight: 2;
column: 'Type' text: [ :_ :position | self typeForColumnAt: position ]
]

0 comments on commit b0047d4

Please sign in to comment.