Skip to content

Commit

Permalink
Fix missing question mark in registrations_enabled? method call
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeldesu committed Aug 11, 2024
1 parent 854a506 commit 9be01a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/application/_questionbox.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
type: :button,
data: {
loading_text: t(".load"),
promote: user_signed_in? || !user_signed_in? && !Retrospring::Config.registrations_enabled ? "false" : "true",
promote: user_signed_in? || !user_signed_in? && !Retrospring::Config.registrations_enabled? ? "false" : "true",
"character-count-target": "action"
}
}
Expand Down

0 comments on commit 9be01a2

Please sign in to comment.