We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e992360 commit cf0b2b0Copy full SHA for cf0b2b0
1 file changed
src/DataFrame/DataFrame.class.st
@@ -1436,10 +1436,11 @@ DataFrame >> inspectionItems: aBuilder [
1436
sortFunction: #yourself ascending;
1437
beNotExpandable;
1438
yourself).
1439
-
1440
- table addColumn: (SpStringTableColumn
1441
- title: ''
1442
- evaluated: [ :rowWithName | rowWithName at: 1 ]).
+ self rowNames = (1 to: self numberOfRows) asOrderedCollection
+ ifFalse: [
+ table addColumn: (SpStringTableColumn
+ title: ''
1443
+ evaluated: [ :rowWithName | rowWithName at: 1 ]) ].
1444
1445
self columnNames doWithIndex: [ :headerName :columnIndex |
1446
table addColumn: (SpStringTableColumn
0 commit comments