@onehat/ui 0.3.314 → 0.3.315
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
|
@@ -225,7 +225,7 @@ function GridComponent(props) {
|
|
|
225
225
|
const usedIds = [];
|
|
226
226
|
_.each(localConfig, (column, ix) => {
|
|
227
227
|
if (!column.id || inArray(column.id, usedIds)) {
|
|
228
|
-
throw Error('When using unserializable columns, each column must have a unique id');
|
|
228
|
+
throw Error('When using unserializable columns, each column must have a unique id. First invalid column: ' + JSON.stringify(column));
|
|
229
229
|
}
|
|
230
230
|
usedIds.push(column.id);
|
|
231
231
|
localConfig[ix] = {
|