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 6d7b147 commit 06c89acCopy full SHA for 06c89ac
core/database/foxx/api/repo_router.js
@@ -240,7 +240,9 @@ router
240
};
241
242
// Remove undefined fields
243
- Object.keys(updateConfig).forEach(k => updateConfig[k] === undefined && delete updateConfig[k]);
+ Object.keys(updateConfig).forEach(
244
+ (k) => updateConfig[k] === undefined && delete updateConfig[k],
245
+ );
246
247
const validationResult = validatePartialGlobusConfig(updateConfig, key);
248
if (!validationResult.ok) {
0 commit comments