fix: Remove trailing comma in generaPDFInterno function
All checks were successful
Build and Deploy / build (push) Successful in 32s
All checks were successful
Build and Deploy / build (push) Successful in 32s
Fixed JavaScript syntax error: - Removed extra comma after generaPDFInterno() closing brace (line 2679) - Error: 'missing : in conditional expression' at line 2681:30 The comma was causing the parser to expect another property in the object literal, but instead found the closing brace. Before: }, (extra comma caused syntax error) After: } (correct - last method in object)
This commit is contained in:
@@ -2677,7 +2677,7 @@
|
||||
"PDF Interno generato con successo!",
|
||||
"success",
|
||||
);
|
||||
},
|
||||
}
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user