Skip to content

Commit 657609c

Browse files
committed
Some minor syntax changes [skip-ci]
1 parent 9827ae4 commit 657609c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/views/invitations/show.html.haml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
-if !signed_in?
1010
%p Before you can accept the invitation you need to create a coderwall account or sign in.
1111
%ul.sign-btns
12-
%li=link_to('Sign Up', root_path, :class => 'join')
13-
%li=link_to('Sign In', signin_path, :id => 'signin', :class => 'join')
12+
%li=link_to('Sign Up', root_path, class: 'join')
13+
%li=link_to('Sign In', signin_path, id: 'signin', class: 'join')
1414
-else
1515
-if users_team = current_user.team
1616
#currentteam
1717
%h2==You are currently on team #{users_team.name}
18-
= render partial: "invitations/team_members", locals: {team: users_team }
18+
= render "invitations/team_members", team: users_team
1919
.clear
2020
%h2 Team invitations
21-
= render partial: "invitations/team_members", locals: {team: @team }
21+
= render "invitations/team_members", team: @team

0 commit comments

Comments
 (0)