File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -306,13 +306,13 @@ export class JobManagerView implements TreeDataProvider<any> {
306
306
const selectedJob = JobManager . getSelection ( ) ;
307
307
308
308
// re-register db2i tables context provider with current schema
309
- const selectedSchema = selectedJob ?. job . options . libraries [ 0 ] ?. trim ( ) . toLowerCase ( ) ;
310
- const currentSchema = provider ?. getCurrentSchema ( ) . trim ( ) . toLowerCase ( ) ;
309
+ const selectedSchema = selectedJob ?. job . options . libraries [ 0 ] ;
310
+ const currentSchema = provider ?. getCurrentSchema ( ) ;
311
311
if (
312
312
provider &&
313
313
selectedJob &&
314
314
selectedSchema &&
315
- currentSchema !== selectedSchema
315
+ currentSchema . toLowerCase ( ) !== selectedSchema . toLowerCase ( )
316
316
) {
317
317
registerDb2iTablesProvider ( selectedSchema ) ;
318
318
}
You can’t perform that action at this time.
0 commit comments