Change minimum allowed maxNoteTextLength to 0 (#4256)

This commit is contained in:
MeiMei 2019-02-14 16:30:20 +09:00 committed by syuilo
parent 83de6d1ce9
commit e3bbfb2649

View file

@ -82,7 +82,7 @@ export const meta = {
},
maxNoteTextLength: {
validator: $.optional.num.min(1),
validator: $.optional.num.min(0),
desc: {
'ja-JP': '投稿の最大文字数'
}