gm-printer 10.14.4-beta.0 → 10.14.4-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-printer",
3
- "version": "10.14.4-beta.0",
3
+ "version": "10.14.4-beta.1",
4
4
  "description": "diy printer",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -17,12 +17,10 @@ class EditorCutomizedConfig extends React.Component {
17
17
  editStore.setMultiDigitDecimal(value)
18
18
  }
19
19
 
20
-
21
-
22
20
  render() {
23
21
  const {
24
22
  editStore,
25
- editStore: { isAutoFilling,isMultiDigitDecimal }
23
+ editStore: { isAutoFilling, isMultiDigitDecimal }
26
24
  } = this.props
27
25
  // 是table
28
26
  if (editStore.computedRegionIsTable) {
@@ -37,7 +35,10 @@ class EditorCutomizedConfig extends React.Component {
37
35
  </Flex>
38
36
  <Flex alignCenter className='gm-padding-top-5'>
39
37
  <div>{i18next.t('是否开启多位小数')}:</div>
40
- <Switch checked={isMultiDigitDecimal} onChange={this.handleMultiDigitDecimal} />
38
+ <Switch
39
+ checked={isMultiDigitDecimal}
40
+ onChange={this.handleMultiDigitDecimal}
41
+ />
41
42
  </Flex>
42
43
  </>
43
44
  )