Skip to content

Commit e27cf3a

Browse files
authored
Merge pull request #21 from nicolethoen/fix/restore-drag-handle-class
fix: restore missing drag handle class on GridTile
2 parents 0138a6c + d7cfce4 commit e27cf3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/module/src/WidgetLayout/GridTile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const GridTile = ({
164164
analytics?.('widget-layout.widget-move', { widgetType });
165165
}}
166166
onMouseUp={() => setIsDragging(false)}
167-
className={clsx({
167+
className={clsx('pf-v6-widget-drag-handle', {
168168
'pf-v6-widget-drag-handle--dragging': isDragging,
169169
})}
170170
>

0 commit comments

Comments
 (0)