We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b98cbc7 + 2ea70a7 commit 3cbf9f0Copy full SHA for 3cbf9f0
1 file changed
src/components/EditorHeader/ControlPanel.jsx
@@ -1522,17 +1522,20 @@ export default function ControlPanel({
1522
notation: {
1523
children: [
1524
{
1525
- default_notation: () => {
+ name: "Default",
1526
+ function: () => {
1527
setSettings((prev) => ({ ...prev, notation: Notation.DEFAULT }));
1528
},
1529
1530
- crows_foot_notation: () => {
1531
+ name: "Crow's Foot",
1532
1533
setSettings((prev) => ({ ...prev, notation: Notation.CROWS_FOOT }));
1534
1535
1536
- idef1x_notation: () => {
1537
+ name: "IDEF1X",
1538
1539
setSettings((prev) => ({ ...prev, notation: Notation.IDEF1X }));
1540
1541
0 commit comments