mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-18 23:11:12 +02:00
fix: fixed UI while indexing
This commit is contained in:
parent
9b9fde955f
commit
5712336feb
4 changed files with 5 additions and 5 deletions
|
|
@ -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>
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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"}
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue