Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions public/app/features/dashboard/dashgrid/DashboardGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,6 @@ export class Component extends PureComponent<Props> {
this.gridWidth = gridWidth;
}

console.log('this.props.dashboard.panels', config.theme2.shape.radius.default);

for (const panel of this.props.dashboard.panels) {
const panelClasses = classNames({ 'react-grid-item--fullscreen': panel.isViewing });

Expand Down Expand Up @@ -255,8 +253,8 @@ export class Component extends PureComponent<Props> {
<div style={{ width: width, height: '100%' }} ref={this.onGetWrapperDivRef}>
<ReactGridLayout
width={width}
isDraggable={(isLg && isFnDashboard) || draggable}
isResizable={isLg && isFnDashboard ? true : isEditable}
isDraggable={isFnDashboard ? false : draggable}
isResizable={isFnDashboard ? false : isEditable}
containerPadding={[0, 0]}
useCSSTransforms={true}
margin={[GRID_CELL_VMARGIN, GRID_CELL_VMARGIN]}
Expand Down
Loading