Skip to content

Commit

Permalink
Fix haml-lint Rubocop Style/MinMaxComparison cop (#25974)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjankowski committed Jul 17, 2023
1 parent 361dd43 commit bd33efd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .haml-lint_todo.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# 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

Expand Down
2 changes: 1 addition & 1 deletion app/views/statuses/_poll.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -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><
Expand Down

0 comments on commit bd33efd

Please sign in to comment.