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) {
28
28
* @docs -private
29
29
*/
30
30
export 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
+ ) ;
32
35
}
33
36
34
37
/**
@@ -37,7 +40,7 @@ export function getTableMultipleDefaultRowDefsError() {
37
40
*/
38
41
export function getTableMissingMatchingRowDefError ( data : any ) {
39
42
return Error (
40
- `Could not find a matching row definition for the` +
43
+ `Could not find a matching row definition for the ` +
41
44
`provided row data: ${ JSON . stringify ( data ) } ` ,
42
45
) ;
43
46
}
You can’t perform that action at this time.
0 commit comments