Skip to content

Commit b450861

Browse files
committed
Fix use of querySelector
1 parent b562c50 commit b450861

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/muc-views/modals/muc-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export default class MUCListModal extends BaseModal {
111111
}
112112

113113
onDomainChange () {
114-
this.querySelector('form-control').value = this.model.get('muc_domain');
114+
this.querySelector('.form-control').value = this.model.get('muc_domain');
115115
this.items = [];
116116
this.model.save('feedback_text', '');
117117
api.settings.get('auto_list_rooms') && this.updateRoomsList();

0 commit comments

Comments
 (0)