fix(ExtensionManager): getDataSources method (#4959)

This commit is contained in:
Pedro Köhler 2025-04-17 09:31:12 -03:00 committed by GitHub
parent 5a9fcd4bf0
commit 66a16cd22f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -371,7 +371,7 @@ export default class ExtensionManager extends PubSubService {
};
getDataSources = dataSourceName => {
if (dataSourceName === undefined) {
if (!dataSourceName) {
// Default to the activeDataSource
dataSourceName = this.activeDataSourceName;
}