We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f26386 commit 5828471Copy full SHA for 5828471
js/core/transformExecutors.ts
@@ -35,9 +35,10 @@ export class HideExecutor extends TransformExecutor {
35
public apply(input: TransformExecutor.IData): TransformExecutor.IData {
36
const newSchema = { ...input.schema };
37
38
+ console.log('input.schema', input.schema);
39
if (this._options.hideAll) {
40
newSchema.fields = newSchema.fields.filter(
- (field) => field.name === 'key',
41
+ (field) => field.name === 'index_column',
42
);
43
} else {
44
0 commit comments