mirror of
https://github.com/flutter/samples.git
synced 2025-11-11 15:28:44 +00:00
Minor sample index cleanup (#1532)
This commit is contained in:
@@ -137,7 +137,7 @@ void filterCards() {
|
||||
|
||||
// Filter out all elements with non-matching search-attrs
|
||||
var elements = querySelectorAll('[search-attrs]');
|
||||
for (var element in elements) {
|
||||
for (final element in elements) {
|
||||
var searchAttributes = element.attributes['search-attrs'];
|
||||
if (matchesQuery(searchQuery, searchAttributes!)) {
|
||||
element.hidden = false;
|
||||
|
||||
@@ -423,7 +423,7 @@ a {
|
||||
margin-right: 8px;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
height: 8px;
|
||||
|
||||
Reference in New Issue
Block a user