diff --git a/src/js/slaveListing.js b/src/js/slaveListing.js
index 492638ff9c833c4c70e49318360a77dbc71efcb0..a8f024ea6073f39699edea1ef1cccfe954afe63c 100644
--- a/src/js/slaveListing.js
+++ b/src/js/slaveListing.js
@@ -317,7 +317,10 @@ App.UI.SlaveList.render = function() {
 		if (postNote !== undefined) {
 			const pn = postNote(slave, index);
 			if (pn) {
-				res.appendChild(pn);
+				let r = document.createElement("p");
+				r.classList.add("si");
+				r.appendChild(pn);
+				res.appendChild(r);
 			}
 		}