From 4fcd3faaee0243da56cf162502c03104fac38cb1 Mon Sep 17 00:00:00 2001 From: kyw546 Date: Thu, 19 Oct 2023 16:03:27 +0900 Subject: [PATCH] =?UTF-8?q?LAANC=20=EC=8A=B9=EC=9D=B8=EB=AA=A9=EB=A1=9D=20?= =?UTF-8?q?=EC=84=BC=ED=84=B0=EC=A0=95=EB=A0=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/laanc/LaancGrid.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/laanc/LaancGrid.js b/src/components/laanc/LaancGrid.js index f1413c7..b727a15 100644 --- a/src/components/laanc/LaancGrid.js +++ b/src/components/laanc/LaancGrid.js @@ -47,6 +47,7 @@ function LaancGrid() { selector: row => row.planSno, minWidth: '170px', sortable: true, + center: true, cell: row => { return row.planSno; } @@ -66,6 +67,7 @@ function LaancGrid() { selector: row => row.schFltStDt, minWidth: '160px', sortable: true, + center: true, cell: row => { return moment(row.schFltStDt).format('YYYY-MM-DD HH:mm'); } @@ -76,6 +78,7 @@ function LaancGrid() { selector: row => row.schFltEndDt, minWidth: '160px', sortable: true, + center: true, cell: row => { return moment(row.schFltEndDt).format('YYYY-MM-DD HH:mm'); } @@ -86,6 +89,7 @@ function LaancGrid() { selector: row => row.aprvlYn, minWidth: '110px', sortable: true, + center: true, cell: row => { return row.aprvlYn; } @@ -95,6 +99,7 @@ function LaancGrid() { selector: row => row.arcrftWght, minWidth: '260px', sortable: true, + center: true, cell: row => { return row.arcrftWght; }