mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Merge pull request #1850 from Human-Connection/1812-Extend_Title_to_100_characters
Title character increased from 64 to 100
This commit is contained in:
commit
dad60bd7c0
@ -32,7 +32,7 @@ describe('ContributionForm.vue', () => {
|
||||
const postTitle = 'this is a title for a post'
|
||||
const postTitleTooShort = 'xx'
|
||||
let postTitleTooLong = ''
|
||||
for (let i = 0; i < 65; i++) {
|
||||
for (let i = 0; i < 101; i++) {
|
||||
postTitleTooLong += 'x'
|
||||
}
|
||||
const postContent = 'this is a post'
|
||||
|
||||
@ -104,7 +104,7 @@ export default {
|
||||
categoryIds: [],
|
||||
},
|
||||
formSchema: {
|
||||
title: { required: true, min: 3, max: 64 },
|
||||
title: { required: true, min: 3, max: 100 },
|
||||
content: [{ required: true }],
|
||||
},
|
||||
id: null,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user