We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7777722 commit 0a6467aCopy full SHA for 0a6467a
ui/frontend/Playground.tsx
@@ -50,8 +50,8 @@ const ResizableArea: React.FC = () => {
50
// Reset styles left on the grid from split-grid when we change orientation or focus.
51
useEffect(() => {
52
if (grid.current) {
53
- grid.current.style['grid-template-columns'] = null;
54
- grid.current.style['grid-template-rows'] = null;
+ grid.current.style.removeProperty('grid-template-columns');
+ grid.current.style.removeProperty('grid-template-rows');
55
}
56
57
resizeComplete();
0 commit comments