gm-printer 10.32.1 → 10.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/demo.js +1 -1
- package/package.json +1 -1
- package/src/printer/table_special_tr.js +3 -2
package/package.json
CHANGED
|
@@ -133,11 +133,12 @@ const SpecialTr = ({ data, config }) => {
|
|
|
133
133
|
return data[newFields[0].valueField]?.upperCaseBefore
|
|
134
134
|
}
|
|
135
135
|
if (needUpperCase) {
|
|
136
|
-
return
|
|
136
|
+
return (
|
|
137
|
+
data[newFields[0].valueField]?.upperCaseText || data?.upperCaseText
|
|
138
|
+
)
|
|
137
139
|
}
|
|
138
140
|
return data[newFields[0]?.valueField]?.text || data.text
|
|
139
141
|
}
|
|
140
|
-
|
|
141
142
|
return (
|
|
142
143
|
<tr>
|
|
143
144
|
<td
|