mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-05 04:03:45 +08:00
Fix repositories component for docx [SCI-10988]
This commit is contained in:
parent
454c3956b0
commit
b2539d1366
1 changed files with 1 additions and 1 deletions
|
@ -982,7 +982,7 @@ function reportHandsonTableConverter() {
|
|||
|
||||
// Template values
|
||||
reportData.template_values = {};
|
||||
$.each($('.report-template-values-container').find('.sci-input-field'), function(i, field) {
|
||||
$.each($('.report-template-values-container').find('.sci-input-field').not('.report-template-value-dropdown'), (_, field) => {
|
||||
if (field.value.length === 0) return;
|
||||
|
||||
reportData.template_values[field.name] = {
|
||||
|
|
Loading…
Reference in a new issue