fix: Red was defined twice. (#26658)

This commit is contained in:
cwooldridge 2024-06-04 00:33:58 -05:00 committed by GitHub
parent fb2df4ab5e
commit 3d7381da5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@
"fieldtype": "Select",
"in_list_view": 1,
"label": "Indicator",
"options": "Blue\nCyan\nGray\nGreen\nLight Blue\nOrange\nPink\nPurple\nRed\nRed\nYellow"
"options": "Blue\nCyan\nGray\nGreen\nLight Blue\nOrange\nPink\nPurple\nRed\nYellow"
},
{
"fieldname": "order",

View file

@ -15,7 +15,7 @@ class KanbanBoardColumn(Document):
column_name: DF.Data | None
indicator: DF.Literal[
"Blue", "Cyan", "Gray", "Green", "Light Blue", "Orange", "Pink", "Purple", "Red", "Red", "Yellow"
"Blue", "Cyan", "Gray", "Green", "Light Blue", "Orange", "Pink", "Purple", "Red", "Yellow"
]
order: DF.Code | None
parent: DF.Data