linear-react-components-ui 0.4.76-beta.17 → 0.4.76-beta.18
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/lib/treeview/Node.js +5 -1
- package/package.json +1 -1
package/lib/treeview/Node.js
CHANGED
|
@@ -258,12 +258,16 @@ var _initialiseProps = function _initialiseProps() {
|
|
|
258
258
|
onKeyPress: null,
|
|
259
259
|
tabIndex: 0,
|
|
260
260
|
role: "button",
|
|
261
|
+
style: isLoading ? {
|
|
262
|
+
marginLeft: '-30px',
|
|
263
|
+
marginTop: '-5px'
|
|
264
|
+
} : null,
|
|
261
265
|
className: "opencloseicon",
|
|
262
266
|
onClick: function onClick() {
|
|
263
267
|
return _this3.openCloseTree(node);
|
|
264
268
|
}
|
|
265
269
|
}, isLoading ? /*#__PURE__*/_react["default"].createElement(_SpinnerLoading["default"], {
|
|
266
|
-
size: "
|
|
270
|
+
size: "35px"
|
|
267
271
|
}) : /*#__PURE__*/_react["default"].createElement(_icons["default"], {
|
|
268
272
|
name: _this3.state.isVisible ? 'up' : 'down',
|
|
269
273
|
size: 10
|