Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,7 @@ class ArView(
if (node != null) {
var anchorName: String? = null
var currentNode: Node? = node
val nodeName = node.name
while (currentNode != null) {
anchorNodesMap.forEach { (name, anchorNode) ->
if (currentNode == anchorNode) {
Expand All @@ -511,7 +512,7 @@ class ArView(
currentNode = currentNode.parent
}
if(handleTaps) {
objectChannel.invokeMethod("onNodeTap", listOf(anchorName))
objectChannel.invokeMethod("onNodeTap", listOf(nodeName))
}
true
} else {
Expand Down Expand Up @@ -1328,4 +1329,4 @@ class ArView(
}


}
}