Skip to content

Commit 0f0ab49

Browse files
authored
Update stringify-record-values.js
1 parent 5f83f49 commit 0f0ab49

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/table/helpers/stringify-record-values.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import sanitizeRow from './sanitize-row'
33
import stringifyObjectValues from './stringify-object-values'
44

55
// Stringifies the values of a record, ignoring any special top level field keys
6-
// TODO: Add option to stringify `scopedSlot` items
6+
// TODO:
7+
// - Format the row first, make nested keys 'top level', then sanitize,
8+
// perhaps we need a format row helper method
9+
// - Add option to stringify `scopedSlot` items
710
const stringifyRecordValues = (row, ignoreFields, includeFields, fieldsObj) => {
811
return isObject(row)
912
? stringifyObjectValues(sanitizeRow(row, ignoreFields, includeFields, fieldsObj))

0 commit comments

Comments
 (0)