mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2025-11-04 06:31:55 +00:00 
			
		
		
		
	limit to 10 items
This commit is contained in:
		@@ -145,7 +145,7 @@ export default {
 | 
			
		||||
            if (!query) return;
 | 
			
		||||
            const searchHistory = JSON.parse(localStorage.getItem("search_history")) ?? [];
 | 
			
		||||
            if (!searchHistory.includes(query)) searchHistory.push(query);
 | 
			
		||||
            if (searchHistory.length > 3) searchHistory.shift();
 | 
			
		||||
            if (searchHistory.length > 10) searchHistory.shift();
 | 
			
		||||
            localStorage.setItem("search_history", JSON.stringify(searchHistory));
 | 
			
		||||
        },
 | 
			
		||||
    },
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user