Skip to content

Commit c011c0a

Browse files
committed
Fixed typos
1 parent f5bd5bf commit c011c0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,11 @@ const createConnectionWindow = (core, proc, parent, bus) => {
286286
]),
287287
h(BoxContainer, {orientation: 'horizontal'}, [
288288
h('div', {}, 'Username:'),
289-
h(TextField, {value: state.username, oninput: (ev, value) => actions.setusername(value)})
289+
h(TextField, {value: state.username, oninput: (ev, value) => actions.setUsername(value)})
290290
]),
291291
h(BoxContainer, {orientation: 'horizontal'}, [
292292
h('div', {}, 'Password:'),
293-
h(TextField, {type: 'password', value: state.password, oninput: (ev, value) => actions.setpassword(value)})
293+
h(TextField, {type: 'password', value: state.password, oninput: (ev, value) => actions.setPassword(value)})
294294
])
295295
]),
296296
h(Toolbar, {justify: 'flex-end'}, [

0 commit comments

Comments
 (0)