Fix prefer for-of errors
This commit is contained in:
@@ -66,8 +66,7 @@ function populateList(options) {
|
||||
let currentCategory = null;
|
||||
let html = '';
|
||||
|
||||
for (let i = 0; i < availablePlugins.length; i++) {
|
||||
const plugin = availablePlugins[i];
|
||||
for (const plugin of availablePlugins) {
|
||||
const category = plugin.categoryDisplayName;
|
||||
if (category != currentCategory) {
|
||||
if (currentCategory) {
|
||||
|
||||
Reference in New Issue
Block a user