Added api check for ConnectionManagerRequestService.handleDropdown
| @@ -384,7 +384,7 @@ export class ConnectionManagerRequestService { | |||
| 384 | * @returns {boolean} | 384 | * @returns {boolean} |
| 385 | */ | 385 | */ |
| 386 | static isProfileSupported(profile) { | 386 | static isProfileSupported(profile) { |
| 387 | if (!profile) { | 387 | if (!profile || !profile.api) { |
| 388 | return false; | 388 | return false; |
| 389 | } | 389 | } |
| 390 | 390 | ||