guoqqqi commented on a change in pull request #2327: URL: https://github.com/apache/apisix-dashboard/pull/2327#discussion_r810589515
########## File path: web/cypress/integration/consumer/create_and_delete_consumer.spec.js ########## @@ -30,6 +30,7 @@ context('Create and Delete Consumer', () => { monacoScroll: '.monaco-scrollable-element', monacoViewZones: '.view-zones', notificationCloseIcon: '.ant-notification-close-icon', + DetectionofPluginfields: '.ant-tabel-cell', Review comment: It doesn't look like it's being used, please remove it ########## File path: web/src/pages/Consumer/List.tsx ########## @@ -64,6 +64,12 @@ const Page: React.FC = () => { hideInSearch: true, render: (text) => timestampToLocaleString(text as number), }, + { + title: formatMessage({ id: 'menu.plugin' }), + dataIndex: 'plugins', + hideInSearch: true, + render: (_, record) => <>{Object.keys(record.plugins).join(',')}</>, Review comment: ```suggestion render: (_, record) => Object.keys(record.plugins).join(','), ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org