fix: fixed UI while indexing

This commit is contained in:
Anish Sarkar 2026-01-14 18:53:58 +05:30
parent 9b9fde955f
commit 5712336feb
4 changed files with 5 additions and 5 deletions

View file

@ -439,7 +439,7 @@ export default function EditorPage() {
<> <>
<Loader2 className="h-3.5 w-3.5 md:h-4 md:w-4 animate-spin" /> <Loader2 className="h-3.5 w-3.5 md:h-4 md:w-4 animate-spin" />
<span className="text-xs md:text-sm"> <span className="text-xs md:text-sm">
{isNewNote ? "Creating..." : "Saving..."} {isNewNote ? "Creating" : "Saving"}
</span> </span>
</> </>
) : ( ) : (

View file

@ -1294,7 +1294,7 @@ function CreateInviteDialog({
{creating ? ( {creating ? (
<> <>
<Loader2 className="h-4 w-4 mr-2 animate-spin" /> <Loader2 className="h-4 w-4 mr-2 animate-spin" />
Creating... Creating
</> </>
) : ( ) : (
"Create Invite" "Create Invite"
@ -1471,7 +1471,7 @@ function CreateRoleDialog({
{creating ? ( {creating ? (
<> <>
<Loader2 className="h-4 w-4 mr-2 animate-spin" /> <Loader2 className="h-4 w-4 mr-2 animate-spin" />
Creating... Creating
</> </>
) : ( ) : (
"Create Role" "Create Role"

View file

@ -560,7 +560,7 @@ export function LLMConfigForm({
{isSubmitting ? ( {isSubmitting ? (
<> <>
<Loader2 className="h-3.5 w-3.5 sm:h-4 sm:w-4 animate-spin" /> <Loader2 className="h-3.5 w-3.5 sm:h-4 sm:w-4 animate-spin" />
{mode === "edit" ? "Updating..." : "Creating..."} {mode === "edit" ? "Updating..." : "Creating"}
</> </>
) : ( ) : (
<> <>

View file

@ -88,7 +88,7 @@
"description_label": "Description", "description_label": "Description",
"description_placeholder": "What is this search space for?", "description_placeholder": "What is this search space for?",
"create_button": "Create", "create_button": "Create",
"creating": "Creating...", "creating": "Creating",
"all_search_spaces": "All Search Spaces", "all_search_spaces": "All Search Spaces",
"search_spaces_count": "{count, plural, =0 {No search spaces} =1 {1 search space} other {# search spaces}}", "search_spaces_count": "{count, plural, =0 {No search spaces} =1 {1 search space} other {# search spaces}}",
"no_search_spaces": "No search spaces yet", "no_search_spaces": "No search spaces yet",