We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b15355c commit b7bee32Copy full SHA for b7bee32
1 file changed
fas_config/custom_metadata.js
@@ -21,9 +21,9 @@ try {
21
// 2. Get the recipe_configs object and extract the custom values
22
const recipeParams = info.recipe_params || {};
23
24
- const customDE = recipeParams['custom_de'] ?? '<missing custom_de>'; // fallback if not found
25
- const customEN = recipeParams['custom_en'] ?? '<missing custom_en>';
26
- const extra = recipeParams['extra'] ?? '<missing extra>';
+ const customDE = recipeParams['custom_de'] ?? '';
+ const customEN = recipeParams['custom_en'] ?? '';
+ const extra = recipeParams['extra'] ?? '';
27
28
// 3. Read the template JSON (request_only_metadata.json)
29
let template = fs.readFileSync(inputJsonPath, 'utf8');
0 commit comments