()
| 177 | } |
| 178 | |
| 179 | protected async getCache() { |
| 180 | return api.storage.get(`${this.page.name}/${this.identifier}/Search`).then(state => { |
| 181 | if (state) state.cache = true; |
| 182 | return state; |
| 183 | }); |
| 184 | } |
| 185 | |
| 186 | protected setCache(cache) { |
| 187 | cache = JSON.parse(JSON.stringify(cache)); |
no test coverage detected