Skip to content

Commit ce7dc83

Browse files
authored
Merge branch 'master' into master
2 parents 834ea50 + a0dcb4e commit ce7dc83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/models/proposal.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Proposal < ApplicationRecord
2323
# This used to be 600, but it's so confusing for users that the browser
2424
# uses \r\n for newlines and they're over the 600 limit because of
2525
# bytes they can't see. So we give them a bit of tolerance.
26-
validates :abstract, length: {maximum: 625}
26+
validates :abstract, length: {maximum: 1000}
2727
validates :title, length: {maximum: 60}
2828
validates_inclusion_of :state, in: valid_states, allow_nil: true, message: "'%{value}' not a valid state."
2929
validates_inclusion_of :state, in: FINAL_STATES, allow_nil: false, message: "'%{value}' not a confirmable state.",

0 commit comments

Comments
 (0)