diff --git a/assets/javascripts/discourse/components/query-row-content.js.es6 b/assets/javascripts/discourse/components/query-row-content.js.es6
index c256d77..aa7e020 100644
--- a/assets/javascripts/discourse/components/query-row-content.js.es6
+++ b/assets/javascripts/discourse/components/query-row-content.js.es6
@@ -1,6 +1,7 @@
import { categoryLinkHTML } from "discourse/helpers/category-link";
import { autoUpdatingRelativeAge } from "discourse/lib/formatter";
import { bufferedRender } from "discourse-common/lib/buffered-render";
+import { iconHTML, convertIconClass } from "discourse-common/lib/icon-library";
function icon_or_image_replacement(str, ctx) {
str = Ember.get(ctx.contexts[0], str);
@@ -8,8 +9,9 @@ function icon_or_image_replacement(str, ctx) {
return "";
}
- if (str.indexOf("fa-") === 0) {
- return new Handlebars.SafeString("");
+ if (str.indexOf("fa-") > -1) {
+ const icon = iconHTML(convertIconClass(str));
+ return new Handlebars.SafeString(icon);
} else {
return new Handlebars.SafeString("");
}
diff --git a/assets/javascripts/discourse/templates/admin/plugins-explorer.hbs b/assets/javascripts/discourse/templates/admin/plugins-explorer.hbs
index abab1a4..ecb1379 100644
--- a/assets/javascripts/discourse/templates/admin/plugins-explorer.hbs
+++ b/assets/javascripts/discourse/templates/admin/plugins-explorer.hbs
@@ -19,7 +19,7 @@
{{#if othersDirty}}