File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ export function getTableDuplicateColumnNameError(name: string) {
2828 * @docs -private
2929 */
3030export function getTableMultipleDefaultRowDefsError ( ) {
31- return Error ( `There can only be one default row without a when predicate function.` ) ;
31+ return Error (
32+ `There can only be one default row without a when predicate function. ` +
33+ 'Or set `multiTemplateDataRows`.'
34+ ) ;
3235}
3336
3437/**
@@ -37,7 +40,7 @@ export function getTableMultipleDefaultRowDefsError() {
3740 */
3841export function getTableMissingMatchingRowDefError ( data : any ) {
3942 return Error (
40- `Could not find a matching row definition for the` +
43+ `Could not find a matching row definition for the ` +
4144 `provided row data: ${ JSON . stringify ( data ) } ` ,
4245 ) ;
4346}
You can’t perform that action at this time.
0 commit comments