Skip to content

Commit f102773

Browse files
Merge branch 'main' into STAGING
2 parents ee5f26c + 2c58088 commit f102773

File tree

9 files changed

+13
-7
lines changed

9 files changed

+13
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ Allow unauthenticated request : Yes
159159

160160

161161

162+
162163
## Usage
163164
1. Connect to Neo4j Aura Instance by passing URI and password or using Neo4j credentials file.
164165
2. Choose your source from a list of Unstructured sources to create graph.

frontend/src/components/ChatBot/Info/InfoModal.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import wikipedialogo from '../../../assets/images/Wikipedia-logo-v2.svg';
66
import youtubelogo from '../../../assets/images/youtube.png';
77
import gcslogo from '../../../assets/images/gcs.webp';
88
import s3logo from '../../../assets/images/s3logo.png';
9+
910
import {
1011
Chunk,
1112
Entity,
@@ -20,6 +21,7 @@ import HoverableLink from '../../UI/HoverableLink';
2021
import GraphViewButton from '../../Graph/GraphViewButton';
2122
import { chunkEntitiesAPI } from '../../../services/ChunkEntitiesInfo';
2223
import { useCredentials } from '../../../context/UserCredentials';
24+
import type { Node, Relationship } from '@neo4j-nvl/base';
2325
import { calcWordColor } from '@neo4j-devtools/word-color';
2426
import ReactMarkdown from 'react-markdown';
2527
import { GlobeAltIconOutline } from '@neo4j-ndl/react/icons';

frontend/src/components/Graph/GraphViewModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,4 +580,4 @@ const GraphViewModal: React.FunctionComponent<GraphViewModalProps> = ({
580580
</>
581581
);
582582
};
583-
export default GraphViewModal;
583+
export default GraphViewModal;

frontend/src/components/Layout/PageLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,4 +175,4 @@ export default function PageLayoutNew({
175175
/>
176176
</div>
177177
);
178-
}
178+
}

frontend/src/components/Popups/DeletePopUp/DeletePopUp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ export default function DeletePopUp({
5454
</Dialog.Actions>
5555
</Dialog>
5656
);
57-
}
57+
}

frontend/src/components/Popups/GraphEnhancementDialog/DeleteTabForOrphanNodes/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,4 @@ export default function DeletePopUpForOrphanNodes({
279279
</Flex>
280280
</div>
281281
);
282-
}
282+
}

frontend/src/components/Popups/GraphEnhancementDialog/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ export default function GraphEnhancementDialog({
126126
</Dialog.Content>
127127
</Dialog>
128128
);
129-
}
129+
}

frontend/src/components/Popups/LargeFilePopUp/LargeFilesAlert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ const LargeFilesAlert: FC<LargefilesProps> = ({ largeFiles, handleToggle, checke
100100
</Box>
101101
);
102102
};
103-
export default LargeFilesAlert;
103+
export default LargeFilesAlert;

frontend/src/components/QuickStarter.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const QuickStarter: React.FunctionComponent = () => {
1111
const themeUtils = React.useContext(ThemeWrapperContext);
1212
const [themeMode, setThemeMode] = useState<string>(themeUtils.colorMode);
1313
const [showSettingsModal, setshowSettingsModal] = useState<boolean>(false);
14+
const [showOrphanNodeDeletionDialog, setshowOrphanNodeDeletionDialog] = useState<boolean>(false);
1415

1516
const toggleColorMode = () => {
1617
setThemeMode((prevThemeMode) => {
@@ -24,7 +25,6 @@ const QuickStarter: React.FunctionComponent = () => {
2425
const closeSettingModal = () => {
2526
setshowSettingsModal(false);
2627
};
27-
2828
return (
2929
<UserCredentialsWrapper>
3030
<FileContextProvider>
@@ -35,6 +35,9 @@ const QuickStarter: React.FunctionComponent = () => {
3535
openSettingsDialog={openSettingsModal}
3636
isSettingPanelExpanded={showSettingsModal}
3737
closeSettingModal={closeSettingModal}
38+
closeOrphanNodeDeletionModal={closeOrphanNodeDeletionModal}
39+
showOrphanNodeDeletionModal={showOrphanNodeDeletionDialog}
40+
openOrphanNodeDeletionModal={openOrphanNodeDeletionModal}
3841
/>
3942
</AlertContextWrapper>
4043
</MessageContextWrapper>

0 commit comments

Comments
 (0)