We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
records|json_records
After the introduction of #400, a few things are not displayed correctly in the backend. Namely this:
The Vue component that breaks is assets/js/app/listing/Components/Table/Row/_Meta.vue.
assets/js/app/listing/Components/Table/Row/_Meta.vue
Especially these values:
{{ record.author.displayName }} -> can be replaced by {{ record.authorName }}
{{ record.author.displayName }}
{{ record.authorName }}
These two should be added:
{{ record.icon }}
icon_one
{{ record.status }}
The text was updated successfully, but these errors were encountered:
Are there some values of record that are not used in backend zone?
Sorry, something went wrong.
I think they all are, at some time.. Some like depublishedAt is not shown yet, but it will be in the contextual menu on the overview pages. So I think it should match what was in the old one at https://github.com/bolt/four/pull/400/files#diff-af5de60a97e3b51d356ac8b4647b2c95L54
depublishedAt
addition: author/id and author/email are not needed.
author/id
author/email
Can this one wait for #332? Because a lot of things about Vue components will need to follow up there and things will break.
JarJak
Successfully merging a pull request may close this issue.
After the introduction of #400, a few things are not displayed correctly in the backend. Namely this:
The Vue component that breaks is
assets/js/app/listing/Components/Table/Row/_Meta.vue
.Especially these values:
{{ record.author.displayName }}
-> can be replaced by{{ record.authorName }}
These two should be added:
{{ record.icon }}
-> which is coming from theicon_one
from the contenttype definition{{ record.status }}
-> Which is the current status of the record.The text was updated successfully, but these errors were encountered: