We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61d8d34 commit 1cb9634Copy full SHA for 1cb9634
services/frontend/src/components/mcp-server/EnvironmentVariableCard.vue
@@ -84,13 +84,12 @@ const missingRequiredFields = computed(() => {
84
85
// Helper function to check if a value is a placeholder
86
const isPlaceholderValue = (value: string, env: any) => {
87
- if (!value) return true
+ if (!value || value.trim().length === 0) return true
88
89
const trimmedValue = value.trim()
90
91
- // Check against common placeholder patterns
+ // Check against common placeholder patterns that users might manually enter
92
const placeholderPatterns = [
93
- env.placeholder,
94
`<insert-your-${env.name.toLowerCase()}-here>`,
95
`<your-${env.name.toLowerCase()}>`,
96
`<${env.name.toLowerCase()}>`,
0 commit comments