Fix warning

Summary: This was complaining about mixing shorthand  and separete css attributes. Just use separate since its clearer

Reviewed By: passy

Differential Revision: D48315864

fbshipit-source-id: e73e76d7fb94b3d7bba36a34d408202bc91933be
This commit is contained in:
Luke De Feo
2023-08-21 04:24:16 -07:00
committed by Facebook GitHub Bot
parent 4912b3f47e
commit 6f6b953c62

View File

@@ -324,7 +324,7 @@ const IndentGuides = React.memo(
width: indentGuideLinePadding, width: indentGuideLinePadding,
height: TreeItemHeight, height: TreeItemHeight,
borderRight: `1px solid`, borderRight: `1px solid`,
borderImage: `linear-gradient(to bottom, ${firstHalf} 50%, ${secondHalf} 50%) 1`, borderImageSource: `linear-gradient(to bottom, ${firstHalf} 50%, ${secondHalf} 50%)`,
borderImageSlice: 1, borderImageSlice: 1,
}} }}
/> />