Skip to content

Commit

Permalink
Fix typo in angular plugin factory
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored Sep 17, 2024
1 parent ddaac09 commit 50d8711
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ export class Angular2PluginFactory extends PluginFactory {
let pluginDefBase = pluginDefinition.getBasePlugin();
let pluginDefAny:any = (pluginDefBase as any);
let entryPoint = 'main.js';
if (pluginDefAny.getWebEntryPoint) {
entryPoint = pluginDefAny.getWebEntryPoint() || 'main.js';
if (pluginDefAny.getWebEntrypoint) {
entryPoint = pluginDefAny.getWebEntrypoint() || 'main.js';
}
return ZoweZLUX.uriBroker.pluginResourceUri(pluginDefBase, entryPoint);
}
Expand Down

0 comments on commit 50d8711

Please sign in to comment.