@@ -1353,7 +1353,7 @@ export function GraphWrapper({
1353
1353
< GlCheckbox
1354
1354
value = "onlyFollowFirstParent"
1355
1355
onChange = { handleFilterChange }
1356
- defaultChecked = { graphConfig ?. onlyFollowFirstParent ?? false }
1356
+ checked = { graphConfig ?. onlyFollowFirstParent ?? false }
1357
1357
>
1358
1358
Simplify Merge History
1359
1359
</ GlCheckbox >
@@ -1364,7 +1364,7 @@ export function GraphWrapper({
1364
1364
< GlCheckbox
1365
1365
value = "remotes"
1366
1366
onChange = { handleFilterChange }
1367
- defaultChecked = { excludeTypes ?. remotes ?? false }
1367
+ checked = { excludeTypes ?. remotes ?? false }
1368
1368
>
1369
1369
Hide Remote-only Branches
1370
1370
</ GlCheckbox >
@@ -1373,7 +1373,7 @@ export function GraphWrapper({
1373
1373
< GlCheckbox
1374
1374
value = "stashes"
1375
1375
onChange = { handleFilterChange }
1376
- defaultChecked = { excludeTypes ?. stashes ?? false }
1376
+ checked = { excludeTypes ?. stashes ?? false }
1377
1377
>
1378
1378
Hide Stashes
1379
1379
</ GlCheckbox >
@@ -1384,7 +1384,7 @@ export function GraphWrapper({
1384
1384
< GlCheckbox
1385
1385
value = "tags"
1386
1386
onChange = { handleFilterChange }
1387
- defaultChecked = { excludeTypes ?. tags ?? false }
1387
+ checked = { excludeTypes ?. tags ?? false }
1388
1388
>
1389
1389
Hide Tags
1390
1390
</ GlCheckbox >
@@ -1394,7 +1394,7 @@ export function GraphWrapper({
1394
1394
< GlCheckbox
1395
1395
value = "mergeCommits"
1396
1396
onChange = { handleFilterChange }
1397
- defaultChecked = { graphConfig ?. dimMergeCommits ?? false }
1397
+ checked = { graphConfig ?. dimMergeCommits ?? false }
1398
1398
>
1399
1399
Dim Merge Commit Rows
1400
1400
</ GlCheckbox >
@@ -1474,7 +1474,7 @@ export function GraphWrapper({
1474
1474
< GlCheckbox
1475
1475
value = "localBranches"
1476
1476
onChange = { handleOnMinimapAdditionalTypesChange }
1477
- defaultChecked = {
1477
+ checked = {
1478
1478
graphConfig ?. minimapMarkerTypes ?. includes ( 'localBranches' ) ?? false
1479
1479
}
1480
1480
>
@@ -1489,7 +1489,7 @@ export function GraphWrapper({
1489
1489
< GlCheckbox
1490
1490
value = "remoteBranches"
1491
1491
onChange = { handleOnMinimapAdditionalTypesChange }
1492
- defaultChecked = {
1492
+ checked = {
1493
1493
graphConfig ?. minimapMarkerTypes ?. includes ( 'remoteBranches' ) ?? true
1494
1494
}
1495
1495
>
@@ -1504,7 +1504,7 @@ export function GraphWrapper({
1504
1504
< GlCheckbox
1505
1505
value = "pullRequests"
1506
1506
onChange = { handleOnMinimapAdditionalTypesChange }
1507
- defaultChecked = {
1507
+ checked = {
1508
1508
graphConfig ?. minimapMarkerTypes ?. includes ( 'pullRequests' ) ?? true
1509
1509
}
1510
1510
>
@@ -1519,9 +1519,7 @@ export function GraphWrapper({
1519
1519
< GlCheckbox
1520
1520
value = "stashes"
1521
1521
onChange = { handleOnMinimapAdditionalTypesChange }
1522
- defaultChecked = {
1523
- graphConfig ?. minimapMarkerTypes ?. includes ( 'stashes' ) ?? false
1524
- }
1522
+ checked = { graphConfig ?. minimapMarkerTypes ?. includes ( 'stashes' ) ?? false }
1525
1523
>
1526
1524
< span className = "minimap-marker-swatch" data-marker = "stashes" > </ span >
1527
1525
Stashes
@@ -1531,9 +1529,7 @@ export function GraphWrapper({
1531
1529
< GlCheckbox
1532
1530
value = "tags"
1533
1531
onChange = { handleOnMinimapAdditionalTypesChange }
1534
- defaultChecked = {
1535
- graphConfig ?. minimapMarkerTypes ?. includes ( 'tags' ) ?? true
1536
- }
1532
+ checked = { graphConfig ?. minimapMarkerTypes ?. includes ( 'tags' ) ?? true }
1537
1533
>
1538
1534
< span className = "minimap-marker-swatch" data-marker = "tags" > </ span >
1539
1535
Tags
0 commit comments