File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -190,25 +190,25 @@ export function GridItem({
190190 { children }
191191 </ Draggable >
192192
193- { editing && resizeable . x && (
193+ { editing && ! deleting && resizeable . x && (
194194 < div className = { [ styles . resize , styles . resizeLeft ] . join ( " " ) } >
195195 < Draggable onDrag = { handleResizeLeft } > </ Draggable >
196196 </ div >
197197 ) }
198198
199- { editing && resizeable . x && (
199+ { editing && ! deleting && resizeable . x && (
200200 < div className = { [ styles . resize , styles . resizeRight ] . join ( " " ) } >
201201 < Draggable onDrag = { handleResizeRight } > </ Draggable >
202202 </ div >
203203 ) }
204204
205- { editing && resizeable . y && (
205+ { editing && ! deleting && resizeable . y && (
206206 < div className = { [ styles . resize , styles . resizeUp ] . join ( " " ) } >
207207 < Draggable onDrag = { handleResizeUp } > </ Draggable >
208208 </ div >
209209 ) }
210210
211- { editing && resizeable . y && (
211+ { editing && ! deleting && resizeable . y && (
212212 < div className = { [ styles . resize , styles . resizeDown ] . join ( " " ) } >
213213 < Draggable onDrag = { handleResizeDown } > </ Draggable >
214214 </ div >
You can’t perform that action at this time.
0 commit comments