Skip to content

Commit d7cfce4

Browse files
nicolethoenclaude
andcommitted
fix: restore missing drag handle class on GridTile
The pf-v6-widget-drag-handle base class was accidentally dropped during the class name refactoring, preventing react-grid-layout from finding the drag handle element. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0138a6c commit d7cfce4

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)