We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e0e540 commit 778f23fCopy full SHA for 778f23f
src/@types/parseable/api/about.ts
@@ -13,4 +13,5 @@ export type AboutData = {
13
uiVersion: string;
14
grpcPort: number;
15
oidcActive: boolean;
16
+ cache: string;
17
};
src/components/Navbar/infoModal.tsx
@@ -171,6 +171,10 @@ const InfoModal: FC<InfoModalProps> = (props) => {
171
<Text className={aboutTextValue}>{data.store}</Text>
172
</Box>
173
<Box className={aboutTextInnerBox}>
174
+ <Text className={aboutTextKey}>Cache</Text>
175
+ <Text className={aboutTextValue}>{data.cache}</Text>
176
+ </Box>
177
+ <Box className={aboutTextInnerBox}>
178
<Text className={aboutTextKey}>LLM Status</Text>
179
<Text className={aboutTextValue}>{llmStatus}</Text>
180
0 commit comments