()
| 118 | } |
| 119 | |
| 120 | get recordFormat() { |
| 121 | const fields = this.tableInfo.fields; |
| 122 | const res = {} as any; |
| 123 | fields.forEach((f) => { |
| 124 | const parsed = this.parseOneField(f); |
| 125 | if (parsed) { |
| 126 | res[f.id] = parsed; |
| 127 | } |
| 128 | }); |
| 129 | return res; |
| 130 | } |
| 131 | } |
nothing calls this directly
no test coverage detected