mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-21 23:32:31 +00:00
Fixed colors name without the required dash (light and dark ones). #1457
This commit is contained in:
parent
4a78f3b6b8
commit
cb623c3c26
2 changed files with 16 additions and 16 deletions
|
@ -35,7 +35,7 @@ export const colorOptions: SelectorOption<string>[] = [
|
|||
},
|
||||
{
|
||||
label: "Light Gray",
|
||||
value: buildColor("lightgray"),
|
||||
value: buildColor("light-gray"),
|
||||
},
|
||||
{
|
||||
label: "Red",
|
||||
|
@ -67,30 +67,30 @@ export const colorOptions: SelectorOption<string>[] = [
|
|||
},
|
||||
{
|
||||
label: "Dark Red",
|
||||
value: buildColor("darkred"),
|
||||
value: buildColor("dark-red"),
|
||||
},
|
||||
{
|
||||
label: "Dark Green",
|
||||
value: buildColor("darkgreen"),
|
||||
value: buildColor("dark-green"),
|
||||
},
|
||||
{
|
||||
label: "Dark Yellow",
|
||||
value: buildColor("darkyellow"),
|
||||
value: buildColor("dark-yellow"),
|
||||
},
|
||||
{
|
||||
label: "Dark Blue",
|
||||
value: buildColor("darkblue"),
|
||||
value: buildColor("dark-blue"),
|
||||
},
|
||||
{
|
||||
label: "Dark Magenta",
|
||||
value: buildColor("darkmagenta"),
|
||||
value: buildColor("dark-magenta"),
|
||||
},
|
||||
{
|
||||
label: "Dark Cyan",
|
||||
value: buildColor("darkcyan"),
|
||||
value: buildColor("dark-cyan"),
|
||||
},
|
||||
{
|
||||
label: "Dark Grey",
|
||||
value: buildColor("darkgrey"),
|
||||
value: buildColor("dark-grey"),
|
||||
},
|
||||
];
|
||||
|
|
|
@ -114,7 +114,7 @@ export const colorOptions: SelectorOption<string>[] = [
|
|||
},
|
||||
{
|
||||
label: "Light Gray",
|
||||
value: "lightgray",
|
||||
value: "light-gray",
|
||||
},
|
||||
{
|
||||
label: "Red",
|
||||
|
@ -146,30 +146,30 @@ export const colorOptions: SelectorOption<string>[] = [
|
|||
},
|
||||
{
|
||||
label: "Dark Red",
|
||||
value: "darkred",
|
||||
value: "dark-red",
|
||||
},
|
||||
{
|
||||
label: "Dark Green",
|
||||
value: "darkgreen",
|
||||
value: "dark-green",
|
||||
},
|
||||
{
|
||||
label: "Dark Yellow",
|
||||
value: "darkyellow",
|
||||
value: "dark-yellow",
|
||||
},
|
||||
{
|
||||
label: "Dark Blue",
|
||||
value: "darkblue",
|
||||
value: "dark-blue",
|
||||
},
|
||||
{
|
||||
label: "Dark Magenta",
|
||||
value: "darkmagenta",
|
||||
value: "dark-magenta",
|
||||
},
|
||||
{
|
||||
label: "Dark Cyan",
|
||||
value: "darkcyan",
|
||||
value: "dark-cyan",
|
||||
},
|
||||
{
|
||||
label: "Dark Grey",
|
||||
value: "darkgrey",
|
||||
value: "dark-grey",
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue