We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed74e73 commit 6892575Copy full SHA for 6892575
src/searchView.ts
@@ -141,9 +141,9 @@ export class SearchView {
141
}
142
// Custom field
143
if (column.startsWith('$')) {
144
- columnExtra = column.slice(1).toUpperCase()
+ columnExtra = column.slice(1)
145
column = ESearchColumnsTypes.CUSTOM_FIELD
146
- if (SettingsData.cache.columns.indexOf(columnExtra) === -1) {
+ if (SettingsData.cache.columns.indexOf(columnExtra.toUpperCase()) === -1) {
147
throw new Error(`Custom field ${columnExtra} not found`)
148
149
0 commit comments