diff --git a/src/Blog/Feed.jsx b/src/Blog/Feed.jsx
index 4c2039d5..9be8ed10 100644
--- a/src/Blog/Feed.jsx
+++ b/src/Blog/Feed.jsx
@@ -1,6 +1,7 @@
const GRAPHQL_ENDPOINT = props.GRAPHQL_ENDPOINT || "https://near-queryapi.api.pagoda.co";
const contributors = props.contributors || [];
+const blogComponentUrl = props.blogComponentUrl || "bosblog";
const { requestAuthentication, returnLocation, profileAccountId } = props;
const [posts, setPosts] = useState([]);
const promotedPostsQuery = `
@@ -379,7 +380,7 @@ const renderItem = (item, index) => {
return (
Loading...
; } -const { title } = schema; +const { entityTitle } = schema; const editType = accountId === context.accountId ? "edit" : "fork"; const editLabel = editType === "edit" ? "Edit" : "Fork"; @@ -186,6 +186,11 @@ const entityProperties = (obj) => { const listLink = href({ widgetSrc: returnTo, }); +const detailsLink = href({ + widgetSrc: `${REPL_ACCOUNT}/widget/Entities.Template.EntityDetails`, + params: { src, schemaFile, namespace, entityType, returnTo: homeLink }, +}); +const detailsUrl = "https://${REPL_NEAR_URL}/" + detailsLink; const tabs = () => { const defaultTabs = [ @@ -231,8 +236,10 @@ return ( entity, namespace, entityType, + title: entityTitle, showActions: true, returnTo, + detailsUrl, }} />