Skip to content

Commit 5de68e1

Browse files
authoredMay 24, 2023
Fix Refresh function (#1526)
1 parent 7c37653 commit 5de68e1

File tree

1 file changed

+5
-0
lines changed
  • src/libraries/Microsoft.PowerFx.Core/Texl/Builtins

1 file changed

+5
-0
lines changed
 

‎src/libraries/Microsoft.PowerFx.Core/Texl/Builtins/Refresh.cs

+5
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ public override IEnumerable<Identifier> GetIdentifierOfModifiedValue(TexlNode[]
105105

106106
identifierNode = null;
107107

108+
if (args.Length == 0)
109+
{
110+
return null;
111+
}
112+
108113
FirstNameNode firstNameNode = args[0]?.AsFirstName();
109114
identifierNode = firstNameNode;
110115

0 commit comments

Comments
 (0)