Fixed Content Info panel showing "Unknown" for timestamp fields#689
Open
everscending wants to merge 1 commit intoSonicJs-Org:mainfrom
Open
Fixed Content Info panel showing "Unknown" for timestamp fields#689everscending wants to merge 1 commit intoSonicJs-Org:mainfrom
everscending wants to merge 1 commit intoSonicJs-Org:mainfrom
Conversation
Contributor
Author
|
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
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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