We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f084320 + abadd65 commit bf4c8f3Copy full SHA for bf4c8f3
StabilityMatrix.Avalonia/ViewModels/CheckpointsPageViewModel.cs
@@ -213,6 +213,15 @@ protected override async Task OnInitialLoadedAsync()
213
(Func<LocalModelFile, bool>)(
214
file =>
215
string.IsNullOrWhiteSpace(SearchQuery)
216
+ || (
217
+ SearchQuery.StartsWith("#")
218
+ && (
219
+ file.ConnectedModelInfo?.Tags.Contains(
220
+ SearchQuery.Substring(1),
221
+ StringComparer.OrdinalIgnoreCase
222
+ ) ?? false
223
+ )
224
225
|| file.DisplayModelFileName.Contains(
226
SearchQuery,
227
StringComparison.OrdinalIgnoreCase
0 commit comments