質問編集履歴
2
該当のソースコード 修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
```jsx
|
20
20
|
|
21
|
-
if (bookmarkRoot.children.length != 0)
|
21
|
+
if (bookmarkRoot.children != null && bookmarkRoot.children.length != 0)
|
22
22
|
|
23
23
|
{
|
24
24
|
|
1
該当ソースコード修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
```jsx
|
20
20
|
|
21
|
-
if (bookmarkRoot.children.length =
|
21
|
+
if (bookmarkRoot.children.length != 0)
|
22
22
|
|
23
23
|
{
|
24
24
|
|