Skip to content

Commit 100ba4b

Browse files
Fix implicit global variable in MessageTemplate partial view
Agent-Logs-Url: https://github.com/grandnode/grandnode2/sessions/1b07a443-a39f-4582-9230-d1c8b6154d69 Co-authored-by: KrzysztofPajak <16772986+KrzysztofPajak@users.noreply.github.com>
1 parent 1f517b5 commit 100ba4b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Web/Grand.Web.Store/Areas/Store/Views/MessageTemplate/Partials/CreateOrUpdate.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
sendImmediately();
176176
$(".SearchTokens").on("input", function (e) { SearchTokens(e); })
177177
$("input").click(function (e) {
178-
onInputFocus = $(e.target);
178+
var onInputFocus = $(e.target);
179179
});
180180
});
181181

0 commit comments

Comments
 (0)