Removed unused css class from icon

This commit is contained in:
Rohan Sircar 2020-06-20 19:38:54 +05:30
parent b6cc872cd5
commit 944377f111

View File

@ -99,10 +99,10 @@ Handlebars.registerHelper("msgDateFormat", function (date: string) {
Handlebars.registerHelper("lockIcon", function (unlocked: boolean) {
switch (unlocked) {
case true: {
return '<i class="fas fa-lock-open user-passphrase"></i>';
return '<i class="fas fa-lock-open"></i>';
}
default: {
return '<i class="fas fa-lock user-passphrase"></i>';
return '<i class="fas fa-lock"></i>';
}
}
});