Skip to content
Snippets Groups Projects
Unverified Commit bd33efdf authored by Matt Jankowski's avatar Matt Jankowski Committed by GitHub
Browse files

Fix haml-lint Rubocop `Style/MinMaxComparison` cop (#25974)

parent 361dd432
No related branches found
No related tags found
No related merge requests found
# This configuration was generated by
# `haml-lint --auto-gen-config`
# on 2023-07-17 08:54:02 -0400 using Haml-Lint version 0.48.0.
# on 2023-07-17 09:15:24 -0400 using Haml-Lint version 0.48.0.
# The point is for the user to remove these configuration records
# one by one as the lints are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of Haml-Lint, may require this file to be generated again.
linters:
# Offense count: 71
# Offense count: 70
RuboCop:
enabled: false
# Offense count: 960
# Offense count: 959
LineLength:
enabled: false
......
......@@ -17,7 +17,7 @@
%span.poll__voted
%i.poll__voted__mark.fa.fa-check
%progress{ max: 100, value: percent < 1 ? 1 : percent, 'aria-hidden': 'true' }
%progress{ max: 100, value: [percent, 1].max, 'aria-hidden': 'true' }
%span.poll__chart
- else
%label.poll__option><
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment