Skip to content

Commit

Permalink
Update class names
Browse files Browse the repository at this point in the history
  • Loading branch information
wylieconlon committed Aug 26, 2020
1 parent 023a481 commit 1b172f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
overflow: hidden;
}

.lnsLayerPanel__dimension-hidden {
visibility: hidden;
.lnsLayerPanel__dimension-isHidden {
opacity: 0;
}

.lnsLayerPanel__dimension-replace {
.lnsLayerPanel__dimension-isReplacing {
text-decoration: line-through;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export function LayerPanel(
key={accessor}
className={classNames('lnsLayerPanel__dimension', {
// eslint-disable-next-line @typescript-eslint/naming-convention
'lnsLayerPanel__dimension-hidden':
'lnsLayerPanel__dimension-isHidden':
isDraggedOperation(dragDropContext.dragging) &&
accessor === dragDropContext.dragging.columnId,
})}
Expand All @@ -228,7 +228,7 @@ export function LayerPanel(
isDraggedOperation(dragDropContext.dragging) &&
group.groupId !== dragDropContext.dragging.groupId
) {
return 'lnsLayerPanel__dimension-replace';
return 'lnsLayerPanel__dimension-isReplacing';
}
return '';
}}
Expand Down

0 comments on commit 1b172f4

Please sign in to comment.