Optimized Api Explorer and testing system

This commit is contained in:
Frikky
2025-02-17 12:59:56 +01:00
parent 6719f527e8
commit 440a6bcb23
11 changed files with 689 additions and 48 deletions
+3 -3
View File
@@ -343,14 +343,14 @@ const AppStats = (defaultprops) => {
*/}
</div>
{clickData === undefined ?
{clickData === undefined || clickData === null || clickData?.length === 0 ?
null
:
<LineChartWrapper keys={clickData} height={300} width={"100%"} inputname={"Clicks"}/>
}
<div style={{marginTop: 25, }} />
{conversionData === undefined ?
{conversionData === undefined || conversionData === null || conversionData?.length === 0 ?
null
:
<LineChartWrapper keys={conversionData} height={300} width={"100%"} inputname={"Conversions"}/>
@@ -365,4 +365,4 @@ const AppStats = (defaultprops) => {
return dataWrapper;
}
export default AppStats;
export default AppStats;