diff --git a/public/js/settings.js b/public/js/settings.js
index c8e3d0b05..4a1fed2c4 100644
--- a/public/js/settings.js
+++ b/public/js/settings.js
@@ -131,7 +131,11 @@ function updateActiveTags(){
tagsString += $(tag).children('.title').text() + ', ';
}
})
- $(".pageTest #tagNotice").html(`${tagsString.substring(0, tagsString.length - 2)}`);
+ if(tagsString !== ""){
+ $(".pageTest #tagNotice").html(`${tagsString.substring(0, tagsString.length - 2)}`);
+ }else{
+ $(".pageTest #tagNotice").empty();
+ }
}
//smooth caret