fix: init filteredExtensions with [] (#1543)

This commit is contained in:
Vlad Stan
2023-02-23 17:32:40 +02:00
committed by GitHub
parent a154ff3175
commit f9695c0569

View File

@@ -3,7 +3,7 @@ new Vue({
data: function () { data: function () {
return { return {
searchTerm: '', searchTerm: '',
filteredExtensions: null, filteredExtensions: [],
maxStars: 5, maxStars: 5,
user: null user: null
} }