format
This commit is contained in:
parent
766b723405
commit
04bf332b83
4 changed files with 5 additions and 5 deletions
|
@ -133,7 +133,7 @@ class CollectionSearchDelegate {
|
||||||
))
|
))
|
||||||
.where((filter) => containQuery(filter.displayName ?? filter.album))
|
.where((filter) => containQuery(filter.displayName ?? filter.album))
|
||||||
.toList()
|
.toList()
|
||||||
..sort();
|
..sort();
|
||||||
return _buildFilterRow(
|
return _buildFilterRow(
|
||||||
context: context,
|
context: context,
|
||||||
title: context.l10n.searchSectionAlbums,
|
title: context.l10n.searchSectionAlbums,
|
||||||
|
|
|
@ -70,7 +70,7 @@ class XmpNamespace extends Equatable {
|
||||||
})
|
})
|
||||||
.whereNotNull()
|
.whereNotNull()
|
||||||
.toList()
|
.toList()
|
||||||
..sort((a, b) => compareAsciiUpperCaseNatural(a.displayKey, b.displayKey));
|
..sort((a, b) => compareAsciiUpperCaseNatural(a.displayKey, b.displayKey));
|
||||||
|
|
||||||
final content = [
|
final content = [
|
||||||
if (props.isNotEmpty)
|
if (props.isNotEmpty)
|
||||||
|
|
|
@ -12,14 +12,14 @@ class FakeStorageService extends Fake implements StorageService {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<Set<StorageVolume>> getStorageVolumes() => SynchronousFuture({
|
Future<Set<StorageVolume>> getStorageVolumes() => SynchronousFuture({
|
||||||
const StorageVolume(
|
const StorageVolume(
|
||||||
path: primaryPath,
|
path: primaryPath,
|
||||||
description: primaryDescription,
|
description: primaryDescription,
|
||||||
isPrimary: true,
|
isPrimary: true,
|
||||||
isRemovable: false,
|
isRemovable: false,
|
||||||
state: 'fake',
|
state: 'fake',
|
||||||
),
|
),
|
||||||
const StorageVolume(
|
const StorageVolume(
|
||||||
path: removablePath,
|
path: removablePath,
|
||||||
description: removableDescription,
|
description: removableDescription,
|
||||||
isPrimary: false,
|
isPrimary: false,
|
||||||
|
|
Loading…
Reference in a new issue