Skip to content

Commit a98dadb

Browse files
committed
fixed linter issues
1 parent 1f7a9f6 commit a98dadb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/views/admin/activities/index.html.haml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@
5757
- elsif activity.price == 0
5858
%span.badge.badge-primary.size-small= I18n.t('admin.activities.free')
5959
- else
60-
%span.badge.badge-warning.size-small= I18n.t('admin.activities.is_not_payable')
60+
%span.badge.badge-warning.size-small= I18n.t('admin.activities.is_not_payable')

app/views/admin/activities/partials/_attendee_table_row.html.haml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-#
22
@param {participant} participant - Participant for this row of the table
33
4-
%tr{ :class => ('in-debt' unless participant.currency.nil? || participant.currency == 0 || participant.paid),
4+
%tr{ :class => ('in-debt' unless participant.currency.nil? || participant.currency == 0 || participant.paid),
55
:style => ('background-color: rgba(253, 213, 208, 1);' if participant.member.underage_at?(@activity.start_date)),
66
:data => { :id => participant.id || '{0}', :'data-activities-id' => @activity.id, :email => participant.member.email || '{3}', reservist: participant.reservist.to_s || 'false' } }
77
%td

0 commit comments

Comments
 (0)