fix(app): make personal notes DM-like for search filtering (#57)
This commit is contained in:
parent
2c0894312b
commit
9dee7f1519
@ -97,6 +97,9 @@ export const getScopeOptionsForChannel = (i18n: I18n, channel?: ChannelRecord |
|
||||
return GUILD_SCOPE_OPTIONS;
|
||||
}
|
||||
|
||||
const isDmChannel = channel.type === ChannelTypes.DM || channel.type === ChannelTypes.GROUP_DM;
|
||||
const isDmChannel =
|
||||
channel.type === ChannelTypes.DM ||
|
||||
channel.type === ChannelTypes.GROUP_DM ||
|
||||
channel.type === ChannelTypes.DM_PERSONAL_NOTES;
|
||||
return isDmChannel ? DM_SCOPE_OPTIONS : GUILD_SCOPE_OPTIONS;
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user