PSS Trend Added

This commit is contained in:
CPM
2025-09-17 11:46:32 +05:30
parent 85bb27408e
commit d65979518f
6 changed files with 1064 additions and 190 deletions
+4 -2
View File
@@ -99,7 +99,7 @@ const Details = () => {
</View>
<ScrollView style={{ padding: 20 }}>
{selectedDetails.map((detail, index) => {
{selectedDetails && selectedDetails.length > 0 ? selectedDetails.map((detail, index) => {
const values = modalGraphData[detail.GraphUrl] || [];
if (!modalGraphData[detail.GraphUrl]) {
@@ -321,7 +321,9 @@ const Details = () => {
</View>
);
}
})}
}) :
<Loader visible={true} />
}
</ScrollView>
<Modal