Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JoonasAapro committed Jun 20, 2024
1 parent 1d02e00 commit 6990bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/packs/src/decidim/privacy/decidim_privacy_settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $(() => {
}

const toggleVisibility = () => {
if (privacyMessagingText.style.display === "none"){
if (privacyMessagingText.style.display === "none") {
privacyMessagingText.style.display = "block";
} else {
privacyMessagingText.style.display = "none";
Expand Down

0 comments on commit 6990bc8

Please sign in to comment.