Fixed Content Info panel showing "Unknown" for timestamp fields#689
Fixed Content Info panel showing "Unknown" for timestamp fields#689everscending wants to merge 1 commit intoSonicJs-Org:mainfrom
Conversation
|
Fyi, the tests/e2e/39-slug-generation.spec.ts E2E test is failing for me on this branch and also the main branch: Error: locator.click: Test timeout of 30000ms exceeded.
227 | // Click on the content to edit it
|
|
Hey @everscending — thank you for this fix! Your Content Info panel timestamp fix was cherry-picked and merged as PR #703. It shipped in v2.8.3. Appreciate you digging into the template data path issue. 🙏 For context: we cherry-pick fork PRs into our own branches to work around GitHub Actions CI limitations with fork secrets. Your authorship is preserved in the git history. |
Description
In admin-content-form.template.ts, the Content Info panel is showing "Unknown" for Created/Modified/Published
because its referencing data.data?.created_at, data.data?.updated_at, and data.data?.published_at, instead
of data.created_at, data.updated_at, data.published_at.
Fixes # 688
Changes
-- added .history folder which is used by the local history vscode plugin
-- added created_at/updated_at/published_at fields to contentForm object
-- Now pulling timestamp values from data instead of data.data
Testing
Unit Tests
E2E Tests
Screenshots/Videos
Checklist
Generated with Claude Code in Conductor