We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 546e54e commit 9ec83cbCopy full SHA for 9ec83cb
lib/src/anchor.dart
@@ -13,7 +13,7 @@ class AnchorKey extends GlobalKey {
13
}
14
15
static AnchorKey? forId(Key? parentKey, String? id) {
16
- if (parentKey == null || id == null || id.isEmpty) {
+ if (parentKey == null || id == null || id.isEmpty || id == "[[No ID]]") {
17
return null;
18
19
return AnchorKey._(parentKey, id);
0 commit comments