From affb9e405e33acb3e7b7e3b05c9b3ba6613ffb56 Mon Sep 17 00:00:00 2001 From: ibuler Date: Thu, 20 Mar 2025 16:51:53 +0800 Subject: [PATCH] perf: update platform automation update --- src/views/assets/Platform/PlatformDetail/Automation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/assets/Platform/PlatformDetail/Automation.vue b/src/views/assets/Platform/PlatformDetail/Automation.vue index 7911ba2af..df4a17343 100644 --- a/src/views/assets/Platform/PlatformDetail/Automation.vue +++ b/src/views/assets/Platform/PlatformDetail/Automation.vue @@ -67,7 +67,7 @@ export default { if (!this.canSubmit || !this.isSystemAdmin) { return this.$message.error(this.$tc('NoPermission')) } - this.$axios.patch(`${this.url}`, validValues).then(() => { + this.$axios.patch(`${this.url}${this.object.id}/`, validValues).then(() => { this.$message.success(this.$tc('UpdateSuccessMsg')) }) }