rename tributeValues to mentionValues (#25375)

Very simple change, just rename this variable so it does not feature the
name of the module.
This commit is contained in:
silverwind 2023-06-20 05:32:49 +02:00 committed by GitHub
parent 33cd74ad70
commit ef6f5f0124
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -42,6 +42,6 @@ test('matchEmoji', () => {
});
test('matchMention', () => {
expect(matchMention('')).toEqual(window.config.tributeValues.slice(0, 6));
expect(matchMention('user4')).toEqual([window.config.tributeValues[3]]);
expect(matchMention('')).toEqual(window.config.mentionValues.slice(0, 6));
expect(matchMention('user4')).toEqual([window.config.mentionValues[3]]);
});