diff --git a/client/src/app/shared/shared-instance/instance-features-table.component.html b/client/src/app/shared/shared-instance/instance-features-table.component.html
index 83440e87c..0d4e77b73 100644
--- a/client/src/app/shared/shared-instance/instance-features-table.component.html
+++ b/client/src/app/shared/shared-instance/instance-features-table.component.html
@@ -128,5 +128,27 @@
+
+
+ Plugins & Themes |
+
+
+
+ Available themes |
+
+
+ {{ theme.name }}
+
+ |
+
+
+
+ Plugins enabled |
+
+
+ {{ plugin.name }}
+
+ |
+
diff --git a/client/src/app/shared/shared-instance/instance-features-table.component.scss b/client/src/app/shared/shared-instance/instance-features-table.component.scss
index d8efd8cdf..6107909a2 100644
--- a/client/src/app/shared/shared-instance/instance-features-table.component.scss
+++ b/client/src/app/shared/shared-instance/instance-features-table.component.scss
@@ -34,6 +34,11 @@ table {
font-weight: $font-semibold;
color: pvar(--mainForegroundColor);
}
+
+ .plugin,
+ .theme {
+ &:not(:last-child):after {
+ content: '•';
+ }
+ }
}
-
-