Skip to content

Commit 693fe9d

Browse files
committed
highlight removed after clicked
1 parent eed2b26 commit 693fe9d

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementProductTable.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,14 @@ const ReimbursementProductTable: React.FC<ReimbursementProductTableProps> = ({
173173
}
174174
}}
175175
startIcon={<Add />}
176-
onClick={() =>
176+
onClick={(e) => {
177177
appendProduct({
178178
wbsNum: validateWBS(key),
179179
name: '',
180180
cost: 0
181-
})
182-
}
181+
});
182+
e.currentTarget.blur();
183+
}}
183184
>
184185
Add Product
185186
</Button>

0 commit comments

Comments
 (0)