diff --git a/mayfly_go_web/src/common/sockets.ts b/mayfly_go_web/src/common/sockets.ts index db61ca91..aa1dc4a6 100644 --- a/mayfly_go_web/src/common/sockets.ts +++ b/mayfly_go_web/src/common/sockets.ts @@ -45,7 +45,7 @@ export default { notification: undefined, } } - progress.props.progress.sqlFileName = content.sqlFileName + progress.props.progress.title = content.title progress.props.progress.executedStatements = content.executedStatements if (!notifyMap.has(id)) { const vNodeMessage = createVNode( diff --git a/mayfly_go_web/src/components/progress-notify/progress-notify.ts b/mayfly_go_web/src/components/progress-notify/progress-notify.ts index 48e93572..0a7b3861 100644 --- a/mayfly_go_web/src/components/progress-notify/progress-notify.ts +++ b/mayfly_go_web/src/components/progress-notify/progress-notify.ts @@ -1,7 +1,7 @@ export const buildProgressProps = (): any => { return { progress: { - sqlFileName: { + title: { type: String, }, executedStatements: { diff --git a/mayfly_go_web/src/components/progress-notify/progress-notify.vue b/mayfly_go_web/src/components/progress-notify/progress-notify.vue index e366ae72..a0dcf230 100644 --- a/mayfly_go_web/src/components/progress-notify/progress-notify.vue +++ b/mayfly_go_web/src/components/progress-notify/progress-notify.vue @@ -1,5 +1,5 @@