t20-common-lib 0.14.6 → 0.14.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -198,8 +198,9 @@ export default {
|
|
|
198
198
|
},
|
|
199
199
|
expectedHeaderForColumn(col) {
|
|
200
200
|
const label = String(col.label == null ? '' : col.label).trim()
|
|
201
|
-
const required = col.required === true
|
|
202
|
-
return required ? `* ${label}` : label
|
|
201
|
+
// const required = col.required === true
|
|
202
|
+
// return required ? `* ${label}` : label
|
|
203
|
+
return label
|
|
203
204
|
},
|
|
204
205
|
buildSheetPayload(headers, rows, columnTree) {
|
|
205
206
|
const leafCols = this.flattenLeafColumns(columnTree)
|