mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 09:13:09 +02:00
Change minimum allowed maxNoteTextLength to 0 (#4256)
This commit is contained in:
parent
25a8b26977
commit
caea0f0376
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ export const meta = {
|
||||||
},
|
},
|
||||||
|
|
||||||
maxNoteTextLength: {
|
maxNoteTextLength: {
|
||||||
validator: $.optional.num.min(1),
|
validator: $.optional.num.min(0),
|
||||||
desc: {
|
desc: {
|
||||||
'ja-JP': '投稿の最大文字数'
|
'ja-JP': '投稿の最大文字数'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue