Skip to content

Commit

Permalink
fix(webapps/welcome): fix java plugin mechanism (camunda#3497)
Browse files Browse the repository at this point in the history
related to camunda#3496
  • Loading branch information
tasso94 authored Jul 6, 2023
1 parent f42e994 commit ae46854
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@ define('camunda-welcome-bootstrap', function() {
var pluginPackages = window.PLUGIN_PACKAGES || [];
var pluginDependencies = window.PLUGIN_DEPENDENCIES || [];

pluginPackages = pluginPackages.filter(el =>
el.name.startsWith('welcome-plugin-legacy')
);
pluginDependencies = pluginDependencies.filter(el =>
el.requirePackageName.startsWith('welcome-plugin-legacy')
);

pluginPackages.forEach(function(plugin) {
var node = document.createElement('link');
node.setAttribute('rel', 'stylesheet');
Expand Down

0 comments on commit ae46854

Please sign in to comment.