(scopeId: string, group: CommandPaletteGroup)
| 176 | } |
| 177 | |
| 178 | function clearQueryOverride(scopeId: string, group: CommandPaletteGroup) { |
| 179 | queryOverrideRegistry.delete(`${scopeId}:${group}`) |
| 180 | queryOverrides.value = queryOverrides.value.filter( |
| 181 | entry => !(entry.scopeId === scopeId && entry.group === group), |
| 182 | ) |
| 183 | } |
| 184 | |
| 185 | function resolveQueryOverride(scopeId: string, group: CommandPaletteGroup) { |
| 186 | return queryOverrideRegistry.get(`${scopeId}:${group}`) |
no test coverage detected