feat: increase emoji picker search results (#116)
Co-authored-by: ibuki2003 <main@fuwa.dev>
This commit is contained in:
		@@ -151,7 +151,7 @@ watch(q, () => {
 | 
			
		||||
	const newQ = q.value.replace(/:/g, '').toLowerCase();
 | 
			
		||||
 | 
			
		||||
	const searchCustom = () => {
 | 
			
		||||
		const max = 8;
 | 
			
		||||
		const max = 100;
 | 
			
		||||
		const emojis = customEmojis.value;
 | 
			
		||||
		const matches = new Set<Misskey.entities.CustomEmoji>();
 | 
			
		||||
 | 
			
		||||
@@ -214,7 +214,7 @@ watch(q, () => {
 | 
			
		||||
	};
 | 
			
		||||
 | 
			
		||||
	const searchUnicode = () => {
 | 
			
		||||
		const max = 8;
 | 
			
		||||
		const max = 100;
 | 
			
		||||
		const emojis = emojilist;
 | 
			
		||||
		const matches = new Set<UnicodeEmojiDef>();
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user