We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e063043 commit 90d8c93Copy full SHA for 90d8c93
table/render_init.go
@@ -289,12 +289,12 @@ func (t *Table) initForRenderPaddedColumns() {
289
}
290
291
func (t *Table) initForRenderRows() {
292
- // auto-index: calc the index column's max length
293
- t.autoIndexVIndexMaxLength = len(fmt.Sprint(len(t.rowsRawFiltered)))
294
-
295
// filter the rows as requested (before stringification and sorting)
296
t.initForRenderFilterRows()
297
+ // auto-index: calc the index column's max length
+ t.autoIndexVIndexMaxLength = len(fmt.Sprint(len(t.rowsRawFiltered)))
+
298
// stringify the filtered rows
299
t.numColumns = 0
300
t.rows = t.initForRenderRowsStringify(t.rowsRawFiltered, renderHint{})
0 commit comments