mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 15:21:24 +08:00
Revert font awesome 5 changes
We are still pushing ahead on this 100% just need a bit longer to prepare all plugins
This commit is contained in:
@ -39,9 +39,9 @@ createWidget("discourse-poll-option", {
|
||||
const chosen = vote.indexOf(option.id) !== -1;
|
||||
|
||||
if (attrs.isMultiple) {
|
||||
result.push(iconNode(chosen ? "far-check-square" : "far-square"));
|
||||
result.push(iconNode(chosen ? "check-square-o" : "square-o"));
|
||||
} else {
|
||||
result.push(iconNode(chosen ? "far-dot-circle" : "far-circle"));
|
||||
result.push(iconNode(chosen ? "dot-circle-o" : "circle-o"));
|
||||
}
|
||||
result.push(" ");
|
||||
result.push(optionHtml(option));
|
||||
|
Reference in New Issue
Block a user