File tree Expand file tree Collapse file tree 2 files changed +9
-14
lines changed
Expand file tree Collapse file tree 2 files changed +9
-14
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ const Routes = () => (
3333 { /* Dataset Details Page */ }
3434 < Route
3535 path = { `${ RoutesEnum . DATABASES } /:dbName/:docId` }
36- // element={<DatasetDetailPage />}
37- element = { < UpdatedDatasetDetailPage /> }
36+ element = { < DatasetDetailPage /> }
37+ // element={<UpdatedDatasetDetailPage />}
3838 />
3939
4040 { /* Search Page */ }
Original file line number Diff line number Diff line change @@ -955,21 +955,16 @@ const DatasetDetailPage: React.FC = () => {
955955 </ Box >
956956
957957 { /* ai summary */ }
958- { /* { aiSummary && (
959- <Box
958+ { aiSummary && (
959+ < Typography
960960 sx = { {
961- mb: 2,
962- p: 2,
963- borderRadius: "8px",
964- border: "1px solid #ddd",
961+ color : Colors . darkPurple ,
962+ fontWeight : "bold" ,
965963 } }
966964 >
967- <Typography variant="subtitle2" sx={{ fontWeight: 700, mb: 1 }}>
968- AI Summary
969- </Typography>
970- <Typography variant="body1">{aiSummary}</Typography>
971- </Box>
972- )} */ }
965+ AI Summary
966+ </ Typography >
967+ ) }
973968 { aiSummary && < ReadMoreText text = { aiSummary } /> }
974969
975970 < Box
You can’t perform that action at this time.
0 commit comments