(dsId: string, recordId: string)
| 123 | } |
| 124 | |
| 125 | removeCellCacheByRecord(dsId: string, recordId: string) { |
| 126 | const fields = this.getDsFields(dsId); |
| 127 | if (!fields) { |
| 128 | return false; |
| 129 | } |
| 130 | return fields.every((fieldId: string) => { |
| 131 | return this.removeCellCache(dsId, fieldId, recordId); |
| 132 | }); |
| 133 | } |
| 134 | |
| 135 | removeDsCache(dsId: string) { |
| 136 | this.dsMap.set(dsId, null); |
no test coverage detected