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 4c4914e commit 65cfc25Copy full SHA for 65cfc25
src/people/widgetViews/workspace/WorkspaceEnvVarsModal.tsx
@@ -78,7 +78,8 @@ const WorkspaceEnvVarsModal: React.FC<WorkspaceEnvVarsModalProps> = observer(
78
const handleSave = async () => {
79
setSaving(true);
80
// Only send new/changed values (not masked/unchanged)
81
- const toSend = envVars.filter((v) => v.value && !v.value.includes('*'));
+ const toSend = envVars.filter((v) => v.value);
82
+
83
try {
84
await mainStore.updateWorkspaceEnvVars(workspaceUuid, toSend);
85
onClose();
0 commit comments