Skip to content

Commit

Permalink
Fix minor issue with ViewTree
Browse files Browse the repository at this point in the history
  • Loading branch information
spaaaacccee committed Mar 2, 2024
1 parent 6b351ad commit 11eb0b4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion client/src/components/title-bar/TitleBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,13 @@ export const TitleBar = () => {
key: id(),
children: [
{ ...view, size: 80 },
{ type: "leaf", key: id(), content: { type: "" }, size: 20 },
{
type: "leaf",
key: id(),
content: { type: "" },
size: 20,
acceptDrop: true,
},
],
},
};
Expand Down

0 comments on commit 11eb0b4

Please sign in to comment.