Skip to content

Commit

Permalink
Fixing problem that if plugins are installed, but none of the top-lev…
Browse files Browse the repository at this point in the history
…el ones (the ones shown in the Plugins tab at the top level), you don’t see the “No plugins are currently installed” message when you click on the tab. This was because the code to show that relied on no plugins at all being defined in the system, rather than no top-level ones.
  • Loading branch information
longdogz committed Apr 5, 2017
1 parent 715df00 commit 12f6351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ui/app/views/PluginsTable.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</div>
</div>
</div>
<div ng-show="!plugins || plugins.length === 0">
<div ng-show="!plugins || (plugins | filter:{ pluginType: 'contributeAppLevelFeature' }).length === 0">
<label>No plugins are currently installed.</label>
</div>
</div>

0 comments on commit 12f6351

Please sign in to comment.