Skip to content

Commit 778f23f

Browse files
add cache information from About API to the About page (#171)
fixes parseablehq/parseable#593
1 parent 3e0e540 commit 778f23f

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/@types/parseable/api/about.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ export type AboutData = {
1313
uiVersion: string;
1414
grpcPort: number;
1515
oidcActive: boolean;
16+
cache: string;
1617
};

src/components/Navbar/infoModal.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,10 @@ const InfoModal: FC<InfoModalProps> = (props) => {
171171
<Text className={aboutTextValue}>{data.store}</Text>
172172
</Box>
173173
<Box className={aboutTextInnerBox}>
174+
<Text className={aboutTextKey}>Cache</Text>
175+
<Text className={aboutTextValue}>{data.cache}</Text>
176+
</Box>
177+
<Box className={aboutTextInnerBox}>
174178
<Text className={aboutTextKey}>LLM Status</Text>
175179
<Text className={aboutTextValue}>{llmStatus}</Text>
176180
</Box>

0 commit comments

Comments
 (0)