mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
fix spelling of fuschia :(
This commit is contained in:
parent
de1cd8c264
commit
e0775446c9
3 changed files with 40 additions and 2 deletions
|
@ -36,7 +36,7 @@ addSuggestionColorMap(SuggestionType.PopCulture, "red");
|
|||
addSuggestionColorMap(SuggestionType.Food, "yellow");
|
||||
addSuggestionColorMap(SuggestionType.Interviewing, "purple");
|
||||
addSuggestionColorMap(SuggestionType.Home, "green");
|
||||
addSuggestionColorMap(SuggestionType.Fun, "fuschia");
|
||||
addSuggestionColorMap(SuggestionType.Fun, "fuchsia");
|
||||
addSuggestionColorMap(SuggestionType.Code, "purple");
|
||||
|
||||
const DEFAULT_COLOR = "orange";
|
||||
|
|
38
src/khoj/database/migrations/0054_alter_agent_style_color.py
Normal file
38
src/khoj/database/migrations/0054_alter_agent_style_color.py
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Generated by Django 5.0.7 on 2024-08-05 06:19
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("database", "0053_agent_style_color_agent_style_icon"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="agent",
|
||||
name="style_color",
|
||||
field=models.CharField(
|
||||
choices=[
|
||||
("blue", "Blue"),
|
||||
("green", "Green"),
|
||||
("red", "Red"),
|
||||
("yellow", "Yellow"),
|
||||
("orange", "Orange"),
|
||||
("purple", "Purple"),
|
||||
("pink", "Pink"),
|
||||
("teal", "Teal"),
|
||||
("cyan", "Cyan"),
|
||||
("lime", "Lime"),
|
||||
("indigo", "Indigo"),
|
||||
("fuchsia", "Fuchsia"),
|
||||
("rose", "Rose"),
|
||||
("sky", "Sky"),
|
||||
("amber", "Amber"),
|
||||
("emerald", "Emerald"),
|
||||
],
|
||||
default="blue",
|
||||
max_length=200,
|
||||
),
|
||||
),
|
||||
]
|
|
@ -115,7 +115,7 @@ class Agent(BaseModel):
|
|||
CYAN = "cyan"
|
||||
LIME = "lime"
|
||||
INDIGO = "indigo"
|
||||
FUSCHIA = "fuschia"
|
||||
FUCHSIA = "fuchsia"
|
||||
ROSE = "rose"
|
||||
SKY = "sky"
|
||||
AMBER = "amber"
|
||||
|
|
Loading…
Reference in a new issue