You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by su...@apache.org on 2021/05/12 00:50:46 UTC

[apisix-dashboard] branch master updated: fix: route page Protable (#1887)

This is an automated email from the ASF dual-hosted git repository.

sunyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new fa9c292  fix: route page Protable (#1887)
fa9c292 is described below

commit fa9c292266f01f5e8ff144e89f421d0a218664e6
Author: Ayush das <ay...@gmail.com>
AuthorDate: Wed May 12 06:20:39 2021 +0530

    fix: route page Protable (#1887)
---
 web/src/pages/Route/List.tsx | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/web/src/pages/Route/List.tsx b/web/src/pages/Route/List.tsx
index c494478..c70622b 100644
--- a/web/src/pages/Route/List.tsx
+++ b/web/src/pages/Route/List.tsx
@@ -332,6 +332,7 @@ const Page: React.FC = () => {
     {
       title: formatMessage({ id: 'component.global.name' }),
       dataIndex: 'name',
+      fixed: 'left',
     },
     {
       title: formatMessage({ id: 'page.route.host' }),
@@ -493,6 +494,7 @@ const Page: React.FC = () => {
     {
       title: formatMessage({ id: 'component.global.operation' }),
       valueType: 'option',
+      fixed: 'right',
       hideInSearch: true,
       render: (_, record) => (
         <>
@@ -560,6 +562,7 @@ const Page: React.FC = () => {
         rowSelection={rowSelection}
         footer={() => <ListFooter />}
         tableAlertRender={false}
+        scroll={{ x: 1300 }}
       />
       <DebugDrawView
         visible={debugDrawVisible}