sync onprem features/pages with cloud

This commit is contained in:
lalitdeore
2025-02-06 15:39:19 +05:30
parent f9e4a86245
commit 840347844a
30 changed files with 17680 additions and 72 deletions
+12 -8
View File
@@ -416,9 +416,13 @@ const AppGrid = (props) => {
>
{hits.map((data, index) => {
const appUrl =
isCloud
? `/apps/${data.objectID}?queryID=${data.__queryID}`
: `https://shuffler.io/apps/${data.objectID}?queryID=${data.__queryID}`;
isCloud === true ?
`/apps/${data.id}`
: `https://shuffler.io/apps/${data.objectID}`;
if (data.name === "" && data.id === "") {
return null
}
return (
<Zoom
@@ -1732,13 +1736,13 @@ const AppGrid = (props) => {
};
const appUrl =
isCloud === true
? `/apps/${data.id}`
isCloud === true ?
`/apps/${data.id}`
: `https://shuffler.io/apps/${data.id}`;
if (data.name === "" && data.id === "") {
return null
}
if (data.name === "" && data.id === "") {
return null
}
return (
<Zoom