icons deprecations fixes (#6920)

This commit is contained in:
Joffrey JAFFEUX
2019-01-22 12:02:02 +01:00
committed by GitHub
parent ea0e188c8f
commit 80d42b4ea2
78 changed files with 151 additions and 145 deletions

View File

@ -435,7 +435,7 @@ createWidget("discourse-poll-buttons", {
className: "btn toggle-results",
label: "poll.hide-results.label",
title: "poll.hide-results.title",
icon: "eye-slash",
icon: "far-eye-slash",
disabled: hideResultsDisabled,
action: "toggleResults"
})
@ -451,7 +451,7 @@ createWidget("discourse-poll-buttons", {
className: "btn toggle-results",
label: "poll.show-results.label",
title: "poll.show-results.title",
icon: "eye",
icon: "far-eye",
disabled: poll.get("voters") === 0,
action: "toggleResults"
})