mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
make label name <= 64 char length
This commit is contained in:
parent
cc95574d5c
commit
bb665a704b
1 changed files with 2 additions and 2 deletions
|
|
@ -1272,9 +1272,9 @@ const schema = gql`
|
|||
union LabelsResult = LabelsSuccess | LabelsError
|
||||
|
||||
input CreateLabelInput {
|
||||
name: String!
|
||||
name: String! @sanitize(maxLength: 64)
|
||||
color: String!
|
||||
description: String
|
||||
description: String @sanitize(maxLength: 100)
|
||||
}
|
||||
|
||||
type CreateLabelSuccess {
|
||||
|
|
|
|||
Loading…
Reference in a new issue