소스 검색

Make list an executable

JC Brand 7 년 전
부모
커밋
5ded3b6cb9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/converse-muc-views.js

+ 1 - 1
src/converse-muc-views.js

@@ -617,7 +617,7 @@
                         'min_chars': 1,
                         'match_current_word': true,
                         'match_on_tab': true,
-                        'list': this.model.occupants.map(o => ({'label': o.getDisplayName(), 'value': o.get('jid')})),
+                        'list': () => this.model.occupants.map(o => ({'label': o.getDisplayName(), 'value': o.get('jid')})),
                         'filter': _converse.FILTER_STARTSWITH
                     });
                     this.auto_complete.on('suggestion-box-selectcomplete', () => (this.auto_completing = false));