-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hotfix: wrong documenttype data and fix title issue in detail article #460
Conversation
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 7440ddc. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution
Sent with 💌 from NxCloud. |
return ( | ||
<Table | ||
isLoading={isLoading} | ||
headers={["Title", "Created", "Status"]} | ||
rows={documents.map((document, key) => [ | ||
<Link key={`${key}-${document.id}-id`} href={`/content/${document.documentType}/${document.id}`}> | ||
<p className="font-medium text-black dark:text-white">{document.data[documentType.titleField] as string}</p> | ||
<p className="font-medium text-black dark:text-white">{(document.data.title as string) || ""}</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See this comment #447 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done ✅
What's new:
documentType
data inTanamDocument
models