Drop custom property from Jupyter Nb metadata (#210011)

This commit is contained in:
Don Jayamanne 2024-04-10 16:30:18 +10:00 committed by GitHub
parent f41eccd467
commit e079f1e07b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -67,5 +67,5 @@ export interface CellMetadata {
}
export function useCustomPropertyInMetadata() {
return !workspace.getConfiguration('jupyter', undefined).get<boolean>('experimental.dropCustomMetadata', false);
return !workspace.getConfiguration('jupyter', undefined).get<boolean>('experimental.dropCustomMetadata', true);
}