mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 03:11:54 +00:00
refactor: Rename is_search to is_keyword_search for clarity.
For more clarity, the 3 related functions `is_search` in `filter.js`, `message_list.js` and `message_list_data.js` are all renamed to `is_keyword_search`.
This commit is contained in:
@@ -866,7 +866,7 @@ export class MessageListView {
|
||||
|
||||
$rendered_groups = this._render_group({
|
||||
message_groups: message_actions.prepend_groups,
|
||||
use_match_properties: this.list.is_search(),
|
||||
use_match_properties: this.list.is_keyword_search(),
|
||||
table_name: this.table_name,
|
||||
});
|
||||
|
||||
@@ -893,7 +893,7 @@ export class MessageListView {
|
||||
|
||||
$rendered_groups = this._render_group({
|
||||
message_groups: [message_group],
|
||||
use_match_properties: this.list.is_search(),
|
||||
use_match_properties: this.list.is_keyword_search(),
|
||||
table_name: this.table_name,
|
||||
});
|
||||
|
||||
@@ -930,7 +930,7 @@ export class MessageListView {
|
||||
|
||||
$rendered_groups = this._render_group({
|
||||
message_groups: message_actions.append_groups,
|
||||
use_match_properties: this.list.is_search(),
|
||||
use_match_properties: this.list.is_keyword_search(),
|
||||
table_name: this.table_name,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user