Skip to content

Commit 70e443e

Browse files
update text
1 parent ed2f495 commit 70e443e

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

gui/src/components/dialogs/AddDocsDialog.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CheckIcon, InformationCircleIcon } from "@heroicons/react/24/outline";
1+
import { InformationCircleIcon } from "@heroicons/react/24/outline";
22
import { IndexingStatus, SiteIndexingConfig } from "core";
33
import { usePostHog } from "posthog-js/react";
44
import { useContext, useLayoutEffect, useMemo, useRef, useState } from "react";
@@ -159,9 +159,9 @@ function AddDocsDialog() {
159159
<DocsIndexingPeeks statuses={docsIndexingStatuses} />
160160
<div className="flex flex-row items-end justify-between pb-3">
161161
<div>
162+
<InformationCircleIcon className="h-3 w-3" />
162163
<p className="mt-2 flex flex-row items-center gap-1 p-0 px-1 text-xs text-stone-500">
163-
<CheckIcon className="h-3 w-3" />
164-
It is safe to close this form while indexing
164+
Closing this dialog will not affect indexing progress
165165
</p>
166166
</div>
167167
</div>

gui/src/components/indexing/DocsIndexingPeeks.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@ interface DocsIndexingPeeksProps {
5656
function DocsIndexingPeekList({ statuses }: DocsIndexingPeeksProps) {
5757
return (
5858
<div className="border-vsc-input-border mt-2 flex flex-col border-0 border-t border-solid pt-2">
59-
<p className="mx-0 my-1.5 p-0 px-1 font-semibold text-stone-500">
60-
Currently indexing
61-
</p>
6259
<div className="max-h-[100px] overflow-y-auto pr-2">
6360
{statuses.map((status) => {
6461
return <DocsIndexingPeek key={status.id} status={status} />;

0 commit comments

Comments
 (0)