diff --git a/src/interface/web/app/components/suggestions/suggestionsData.ts b/src/interface/web/app/components/suggestions/suggestionsData.ts index 8aff80d0..acb29322 100644 --- a/src/interface/web/app/components/suggestions/suggestionsData.ts +++ b/src/interface/web/app/components/suggestions/suggestionsData.ts @@ -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"; diff --git a/src/khoj/database/migrations/0054_alter_agent_style_color.py b/src/khoj/database/migrations/0054_alter_agent_style_color.py new file mode 100644 index 00000000..bf59c78b --- /dev/null +++ b/src/khoj/database/migrations/0054_alter_agent_style_color.py @@ -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, + ), + ), + ] diff --git a/src/khoj/database/models/__init__.py b/src/khoj/database/models/__init__.py index 1f8d55ab..76ef5ab0 100644 --- a/src/khoj/database/models/__init__.py +++ b/src/khoj/database/models/__init__.py @@ -115,7 +115,7 @@ class Agent(BaseModel): CYAN = "cyan" LIME = "lime" INDIGO = "indigo" - FUSCHIA = "fuschia" + FUCHSIA = "fuchsia" ROSE = "rose" SKY = "sky" AMBER = "amber"