Skip to content

Commit

Permalink
[Improve] FE style improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
benjobs committed Jan 20, 2024
1 parent 14881d6 commit 7d81365
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,16 @@ export const useAppTableAction = (
router.push({ path: '/flink/app/add' });
},
schemas: [
{
label: t('flink.app.searchName'),
field: 'jobName',
component: 'Input',
componentProps: {
placeholder: t('flink.app.searchName'),
onChange: handlePageDataReload.bind(null, false),
onSearch: handlePageDataReload.bind(null, false),
},
},
{
label: t('flink.app.tags'),
field: 'tags',
Expand Down Expand Up @@ -310,16 +320,6 @@ export const useAppTableAction = (
onChange: handlePageDataReload.bind(null, false),
},
},
{
label: t('flink.app.searchName'),
field: 'jobName',
component: 'Input',
componentProps: {
placeholder: t('flink.app.searchName'),
onChange: handlePageDataReload.bind(null, false),
onSearch: handlePageDataReload.bind(null, false),
},
},
],
};
if (hasPermission('app:create')) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const useAppTableColumns = () => {
jobName: 250,
flinkVersion: 110,
tags: 150,
state: 120,
state: 130,
release: 120,
duration: 150,
modifyTime: 165,
Expand Down

0 comments on commit 7d81365

Please sign in to comment.