* FIX: paste the spreadsheet to the composer
If we paste spreadsheet with the missing label we receive
`" this \n1 2"`
If we trim whitespace at the beginning then our later calculation to determine if it is a table is incorrect:
```
const columns = rows.map((r) => r.split("\t").length);
const isTable =
columns.reduce((a, b) => a && columns[0] === b && b > 1)
```
https://meta.discourse.org/t/pasting-from-spreadsheet-wont-work-if-corner-cell-is-empty/169443
|
||
|---|---|---|
| .. | ||
| select-kit | ||
| ace-editor-test.js | ||
| admin-report-test.js | ||
| badge-title-test.js | ||
| cook-text-test.js | ||
| d-button-test.js | ||
| d-editor-test.js | ||
| d-icon-test.js | ||
| date-input-test.js | ||
| date-time-input-range-test.js | ||
| date-time-input-test.js | ||
| group-membership-button-test.js | ||
| highlighted-code-test.js | ||
| html-safe-helper-test.js | ||
| iframed-html-test.js | ||
| image-uploader-test.js | ||
| keyboard-shortcuts-test.js | ||
| load-more-test.js | ||
| secret-value-list-test.js | ||
| simple-list-test.js | ||
| text-field-test.js | ||
| time-input-test.js | ||
| user-selector-test.js | ||
| value-list-test.js | ||