stuff
This commit is contained in:
parent
08215f1b95
commit
be926ac3b8
|
@ -133,12 +133,12 @@
|
|||
"applyChatRestrictions": ["openWarningPopout", "userCanUsePremiumMessageLength"]
|
||||
}},
|
||||
"ConnectionMetadataUtils": {"strings": ["connectedAccountVanityMetadataTag", "CONNECTIONS_PROFILE_GENERIC_VANITY_METRIC"], "exported": false, "value": "exports", "map": {
|
||||
"getEbay": ["PC.EBAY_TOP_RATED_SELLER"],
|
||||
"getPaypal": ["PC.PAYPAL_VERIFIED"],
|
||||
"getReddit": ["PC.REDDIT_GOLD"],
|
||||
"getSteam": ["PC.STEAM_GAME_COUNT"],
|
||||
"getTiktok": ["PC.TIKTOK_FOLLOWER_COUNT"],
|
||||
"getTwitter": ["PC.TWITTER_STATUSES_COUNT"]
|
||||
"getEbay": ["generateEbayMetadataItems"],
|
||||
"getPaypal": ["generatePaypalMetadataItems"],
|
||||
"getReddit": ["generateRedditMetadataItems"],
|
||||
"getSteam": ["generateSteamMetadataItems"],
|
||||
"getTiktok": ["generateTikTokMetadataItems"],
|
||||
"getTwitter": ["generateTwitterMetadataItems"]
|
||||
}},
|
||||
"ConnectionProviderUtils": {"props": ["get", "isSupported", "filter"]},
|
||||
"ConnectionUtils": {"props": ["setShowActivity", "setVisibility"]},
|
||||
|
@ -447,7 +447,7 @@
|
|||
"DiscordTag": {"strings": ["hidePersonalInformation", "isVerifiedBot", "botType"]},
|
||||
"Embed": {"strings": ["gridContainer", "renderEmbedContent", "hasThumbnail"]},
|
||||
"EmojiPicker": {"strings": ["emojiSize", "disableEmojiTutorial", ",emojiPaddingHorizontal:"]},
|
||||
"EmojiPickerHeader": {"strings": [".pickerIntention", ".headerClassName", ".Messages.BURST_REACTIONS_"]},
|
||||
"EmojiPickerHeader": {"strings": ["pickerIntention", "headerClassName", ".EmojiIntention.REACTION"]},
|
||||
"EmojiPickerListRow": {"strings": ["emojiSize", "surrogateCodePoint", "EMOJI_FAVORITE_TOOLTIP"]},
|
||||
"FocusRingScope": {"strings": ["FocusRing", "ringTarget was not"]},
|
||||
"FolderHeader": {"strings": ["folderNode:", "expandedFolderIconWrapper", "forceCircular"]},
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @name EmojiStatistics
|
||||
* @author DevilBro
|
||||
* @authorId 278543574059057154
|
||||
* @version 3.0.1
|
||||
* @version 3.0.2
|
||||
* @description Shows you an Overview of Emojis and Emoji Servers
|
||||
* @invite Jx3TjNS
|
||||
* @donate https://www.paypal.me/MircoWittrien
|
||||
|
@ -155,9 +155,9 @@ module.exports = (_ => {
|
|||
cellClassName: BDFDB.disCN[`_emojistatistics${data.cell}cell`],
|
||||
renderHeader: _ => this.labels[`modal_titles${data.key}`],
|
||||
render: item => {
|
||||
if (data.key == "icon") return BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.GuildIconComponents.Icon, {
|
||||
if (data.key == "icon") return BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.GuildIcon, {
|
||||
guild: item.guild,
|
||||
size: BDFDB.LibraryComponents.GuildIconComponents.Icon.Sizes.MEDIUM
|
||||
size: BDFDB.LibraryComponents.GuildIcon.Sizes.MEDIUM
|
||||
});
|
||||
else if (data.key == "name") return BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextScroller, {
|
||||
children: item.guild.name
|
||||
|
|
Loading…
Reference in New Issue