Skip to content

Commit

Permalink
list width update(oss / workflowStage / workflow)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strato-YangSungHun committed Sep 23, 2024
1 parent e2fe62d commit b2c44ec
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions workflowFE/src/views/oss/OssList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,21 @@ const setColumns = () => {
{
title: "OSS Name",
field: "ossName",
width: 400
width: '20%'
},
{
title: "OSS Desc",
field: "ossDesc",
width: 500
width: '20%'
},
{
title: "URL",
field: "ossUrl",
width: 600
width: '40%'
},
{
title: "Action",
width: 400,
width: '20%',
formatter: editDeleteButtonFormatter,
cellClick: function (e, cell) {
const target = e.target as HTMLElement;
Expand Down
10 changes: 5 additions & 5 deletions workflowFE/src/views/workflow/WorkflowList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,28 +63,28 @@ const setColumns = () => {
{
title: "Workflow Name",
field: "workflowInfo.workflowName",
width: 500
width: '35%'
},
{
title: "Workflow Purpose",
field: "workflowInfo.workflowPurpose",
width: 200
width: '10%'
},
{
title: "Params Count",
formatter: paramsCountFomatter,
width: 400,
width: '10%',
// widthShrink: 1,
},
{
title: "Created Date",
field: "regDate",
width: 400,
width: '20%',
// widthShrink: 5,
},
{
title: "Action",
width: 400,
width: '25%',
formatter: editButtonFormatter,
cellClick: async(e, cell) => {
const target = e.target as HTMLElement;
Expand Down
8 changes: 4 additions & 4 deletions workflowFE/src/views/workflowStage/WorkflowStageList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,21 +84,21 @@ const setColumns = () => {
{
title: "Stage Type",
field: "workflowStageTypeName",
width: 500
width: '27%'
},
{
title: "Stage Name",
field: "workflowStageName",
width: 500
width: '27%'
},
{
title: "Stage Desc",
field: "workflowStageDesc",
width: 500
width: '26%'
},
{
title: "Action",
width: 400,
width: '20%',
formatter: editDeleteButtonFormatter,
cellClick: function (e, cell) {
const target = e.target as HTMLElement;
Expand Down

0 comments on commit b2c44ec

Please sign in to comment.