From ea5ecd4c73895f6023f392a1cb47a8766dc11890 Mon Sep 17 00:00:00 2001 From: Jason Sylvestre Date: Tue, 8 Oct 2024 08:39:26 -0700 Subject: [PATCH] Jumping Cursor on Edit --- Hippo.Web/ClientApp/src/components/Admin/Groups.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hippo.Web/ClientApp/src/components/Admin/Groups.tsx b/Hippo.Web/ClientApp/src/components/Admin/Groups.tsx index 639db7d3..f6874eae 100644 --- a/Hippo.Web/ClientApp/src/components/Admin/Groups.tsx +++ b/Hippo.Web/ClientApp/src/components/Admin/Groups.tsx @@ -40,8 +40,8 @@ export const Groups = () => { className="form-control" id="displayNameLookup" placeholder="Group name or description here" - value={editGroupDisplayName} - onChange={(e) => { + defaultValue={editGroupDisplayName} + onBlur={(e) => { setEditGroupDisplayName(e.target.value); setReturn(e.target.value); }}