Skip to content

Commit 391a78d

Browse files
committed
fix: remove unnecessary input value transformation in search functionality
1 parent 543caae commit 391a78d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

webapp/controller/Main.controller.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,6 @@ export default class Main extends BaseController {
229229
const table = this.byId("transactionTable") as Table;
230230
const binding = table.getBinding("items") as ListBinding;
231231
const query = event.getParameter("newValue");
232-
const input = event.getSource();
233-
234-
input.setValue(input.getValue().toUpperCase());
235232

236233
if (query.length === 0) {
237234
binding.filter([]);

0 commit comments

Comments
 (0)