diff options
| author | bobzel <zzzman@gmail.com> | 2024-05-03 10:55:33 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-05-03 10:55:33 -0400 |
| commit | f927a585c75a20629379bcb34d1483c0ca9d8db9 (patch) | |
| tree | f070e9e64ecaf251e6708b8ce4d722f121a6d039 /src/client/views/collections/collectionMulticolumn/MultirowHeightLabel.tsx | |
| parent | 723c8b33ade753764d1d02b130c189fb65e20425 (diff) | |
| parent | 9b424c94d7a89950e9cf3f72e684bd15a61e87ae (diff) | |
merged with new version of master
Diffstat (limited to 'src/client/views/collections/collectionMulticolumn/MultirowHeightLabel.tsx')
| -rw-r--r-- | src/client/views/collections/collectionMulticolumn/MultirowHeightLabel.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionMulticolumn/MultirowHeightLabel.tsx b/src/client/views/collections/collectionMulticolumn/MultirowHeightLabel.tsx index 878c7ff3c..66215f109 100644 --- a/src/client/views/collections/collectionMulticolumn/MultirowHeightLabel.tsx +++ b/src/client/views/collections/collectionMulticolumn/MultirowHeightLabel.tsx @@ -1,3 +1,4 @@ +/* eslint-disable react/require-default-props */ import { computed } from 'mobx'; import { observer } from 'mobx-react'; import * as React from 'react'; @@ -20,7 +21,7 @@ export default class HeightLabel extends React.Component<HeightLabelProps> { const getUnit = () => StrCast(layout.dimUnit); const getMagnitude = () => String(+NumCast(layout.dimMagnitude).toFixed(decimals ?? 3)); return ( - <div className={'label-wrapper'}> + <div className="label-wrapper"> <EditableView GetValue={getMagnitude} SetValue={value => { |
