This is an automated email from the ASF dual-hosted git repository.
benjobs pushed a commit to branch dev-2.1.3
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git
The following commit(s) were added to refs/heads/dev-2.1.3 by this push:
new fa929c23e [Improve] FE minor improvement
fa929c23e is described below
commit fa929c23e8c7159ee1f9d2ccb214e81fc42d21ff
Author: benjobs <[email protected]>
AuthorDate: Wed Feb 7 16:51:43 2024 +0800
[Improve] FE minor improvement
---
.../streampark-console-webapp/src/views/flink/app/View.vue | 2 +-
.../src/views/flink/app/hooks/useAppTableColumns.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
b/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
index c21cdf893..0af94b3bb 100644
--- a/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
+++ b/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
@@ -200,7 +200,7 @@
app['optionState'] === OptionStateEnum.SAVEPOINTING
) {
// yarn-per-job|yarn-session|yarn-application
- handleView(app, unref(yarn));
+ await handleView(app, unref(yarn));
}
}
diff --git
a/streampark-console/streampark-console-webapp/src/views/flink/app/hooks/useAppTableColumns.ts
b/streampark-console/streampark-console-webapp/src/views/flink/app/hooks/useAppTableColumns.ts
index ec567c2cd..6a52840f8 100644
---
a/streampark-console/streampark-console-webapp/src/views/flink/app/hooks/useAppTableColumns.ts
+++
b/streampark-console/streampark-console-webapp/src/views/flink/app/hooks/useAppTableColumns.ts
@@ -55,6 +55,7 @@ export const useAppTableColumns = () => {
},
{ title: t('flink.app.flinkVersion'), dataIndex: 'flinkVersion' },
{ title: t('flink.app.tags'), ellipsis: true, dataIndex: 'tags', width:
150 },
+ { title: t('flink.app.owner'), dataIndex: 'nickName', width:
unref(tableColumnWidth).nickName },
{
title: t('flink.app.runStatus'),
dataIndex: 'state',
@@ -95,7 +96,6 @@ export const useAppTableColumns = () => {
sorter: true,
width: unref(tableColumnWidth).modifyTime,
},
- { title: t('flink.app.owner'), dataIndex: 'nickName', width:
unref(tableColumnWidth).nickName },
]);
return { getAppColumns, onTableColumnResize, tableColumnWidth };
};