Skip to content

Commit

Permalink
fix: 修复 Endpoint Host 被禁用的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
BaiJiangJie committed Jun 19, 2023
1 parent c7e4b0b commit d165f87
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default {
],
fieldsMeta: {
host: {
disabled: ({ row }) => row.id === '00000000-0000-0000-0000-000000000001'
disabled: this.$route.params.id === '00000000-0000-0000-0000-000000000001'
},
oracle_port_range: {
disabled: true
Expand All @@ -47,6 +47,7 @@ export default {
}
},
computed: {},
created() {},
methods: {}
}
</script>
Expand Down

0 comments on commit d165f87

Please sign in to comment.