Skip to content

Commit

Permalink
minor webapp bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
thisismypassport committed Jul 20, 2023
1 parent a6d918f commit 1749390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ function onMinifyFormatChange(event) {
$("#minify-image").toggle(isFormatImg(format));
$("#row-compressed").toggle(!isFormatText(format));
$("#no-row-compressed").toggle(isFormatText(format));
$("#minify-error-overlay").toggle(outputMap[format] == false);
$("#minify-error-overlay").toggle(outputMap[format] === false);
if (event) {
doShrinkoAction();
}
Expand Down

0 comments on commit 1749390

Please sign in to comment.