someting wrong in adminui
See original GitHub issuemy lists:
keystone.createList('Category', {
schemaDoc: '视频的类型',
fields: {
title: { type: Text, isRequired: true},
},
access: {
update: access.userIsAdmin,
create: access.userIsAdmin,
delete: access.userIsAdmin,
},
label: '分类',
labelField: 'title'
})
keystone.createList('Tag', {
schemaDoc: '视频的标签,也可以说是分类。',
fields: {
title: { type: Text, isRequired: true },
counts: { type: Integer, defaultValue: 0},
},
access: {
update: access.userIsAdminOrOwner,
create: access.userIsAdmin,
delete: access.userIsAdmin,
auth: true,
},
label: '标签',
labelField: 'title',
})
keystone.createList('Video', {
label: '视频',
schemaDoc: '关键的视频数据,可以设置标题等信息',
fields: {
title: { type: Text, isRequired: true},
category: { type: Relationship, ref: 'Category' },
counts: { type: Integer, defaultValue: 0},
createdAt: {
type: DateTime,
format: 'DD/MM/YYYY',
defaultValue: new Date()
},
tags: { type: Relationship, ref: 'Tag', many: true },
poster: { type: Text },
summary: { type: Wysiwyg },
url: { type: Text, isMultiline: true }
},
access: {
update: access.userIsAdminOrOwner,
create: access.userIsAdmin,
delete: access.userIsAdmin,
auth: true,
},
})
bug: 一、add tags fiels ,cant click × to delete。
二、When create a video in adminui, includes fieds: category and tags. after save i cant go into http://127.0.0.1:3000/admin/videos, page is blank. console show some error。
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:14 (10 by maintainers)
Top Results From Across the Web
Unable to log in | AdminUI Documentation - IdentityServer .com
If you are unable to login, you can troubleshoot using the below steps. Help! I'm stuck in a redirect loop. If you are...
Read more >Error while login into adminui screen | Symantec Access ...
I have installed siteminder 12.52 and while accessing the Admin ui URL I am getting the attached error. and below are the server.log....
Read more >Admin UI shows wrong Private IP in Gitlab runner section
Summary. My admin area shows duplicated IP / Wrong IP for my gitlab-runner fleet. UI shows "10.34.201.167" but it's not the real private...
Read more >Admin UI | Socket.IO
IO admin UI can be used to have an overview of the state of your Socket ... First, install the @socket.io/admin-ui package: ......
Read more >Backend appId Details - Amplify Admin UI - AWS Documentation
A stringified version of the current configs for your Amplify project. appId. string. True. The app ID. appName. string. False.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m experiencing the same issue. It seems to only affect lists with relational columns. Removing relational columns from
adminConfig.defaultColumns
fixes the error until the column is manually added via the visible column selector interface.This is resolve and there is now a new issue for the refetch warning