Browse Source

chore(nocodb): update text in sample payload

pull/4766/head
Wing-Kam Wong 2 years ago
parent
commit
2c7c5d426f
  1. 6
      packages/nocodb/src/lib/meta/helpers/populateSamplePayload.ts

6
packages/nocodb/src/lib/meta/helpers/populateSamplePayload.ts

@ -84,12 +84,12 @@ async function getSampleColumnValue(column: Column): Promise<any> {
break; break;
case UITypes.SingleLineText: case UITypes.SingleLineText:
{ {
return 'Text'; return 'Sample Text';
} }
break; break;
case UITypes.LongText: case UITypes.LongText:
{ {
return 'Long text'; return 'Sample Long text';
} }
break; break;
case UITypes.Attachment: case UITypes.Attachment:
@ -189,7 +189,7 @@ async function getSampleColumnValue(column: Column): Promise<any> {
break; break;
case UITypes.Formula: case UITypes.Formula:
{ {
return 'output'; return 'Sample Output';
} }
break; break;
case UITypes.Rollup: case UITypes.Rollup:

Loading…
Cancel
Save