diff options
author | 2020-07-03 00:29:52 +0200 | |
---|---|---|
committer | 2020-07-03 00:29:52 +0200 | |
commit | daf633137ec08e6f5647a6f8bb0b02d5dce58ef9 (patch) | |
tree | a4263d323bd4b963a7e6168800a0126f3f6b9c2d /source/features/quick-mention.tsx | |
parent | 19e2a375c34c0dc18462a2b8a9bb4ff6bb9c6590 (diff) | |
download | refined-github-daf633137ec08e6f5647a6f8bb0b02d5dce58ef9.tar.gz refined-github-daf633137ec08e6f5647a6f8bb0b02d5dce58ef9.tar.zst refined-github-daf633137ec08e6f5647a6f8bb0b02d5dce58ef9.zip |
Rename `discussion` → `conversation` (#3308)
Diffstat (limited to 'source/features/quick-mention.tsx')
-rw-r--r-- | source/features/quick-mention.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/features/quick-mention.tsx b/source/features/quick-mention.tsx index 1e341b39..0a9972f1 100644 --- a/source/features/quick-mention.tsx +++ b/source/features/quick-mention.tsx @@ -48,7 +48,7 @@ function init(): void { void features.add({ id: __filebasename, - description: 'Adds a button to @mention a user in discussions.', + description: 'Adds a button to @mention a user in conversations.', screenshot: 'https://user-images.githubusercontent.com/1402241/70406615-f445d580-1a73-11ea-9ab1-bf6bd9aa70a3.gif' }, { include: [ @@ -56,7 +56,7 @@ void features.add({ pageDetect.isPRConversation ], exclude: [ - () => select.exists('.conversation-limited') // Discussion is locked + () => select.exists('.conversation-limited') // Conversation is locked ], additionalListeners: [ onNewComments |