We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0eda39 commit d0feb14Copy full SHA for d0feb14
index.ts
@@ -177,8 +177,8 @@ getBucketLifecycleConfiguration on bucket ${this.options.s3Bucket} in region ${t
177
178
// if showIn of path column has 'create' or 'edit' remove it
179
const pathColumn = resourceConfig.columns[pathColumnIndex];
180
- if (pathColumn.showIn && (pathColumn.showIn.includes('create') || pathColumn.showIn.includes('edit'))) {
181
- pathColumn.showIn = pathColumn.showIn.filter((view: string) => !['create', 'edit'].includes(view));
+ if (pathColumn.showIn && (pathColumn.showIn.create || pathColumn.showIn.edit)) {
+ pathColumn.showIn = { ...pathColumn.showIn, create: false, edit: false };
182
}
183
184
virtualColumn.required = pathColumn.required;
0 commit comments