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.
null
1 parent e06cfa9 commit 03ecef9Copy full SHA for 03ecef9
CHANGELOG.md
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+## [0.0.2] - 2024-09-13
11
+
12
+### Fixed
13
14
+- Default empty argument to search `''` rather than `null`.
15
16
## [0.0.1] - 2024-09-12
17
18
### Added
search.php
@@ -47,7 +47,7 @@
47
]);
48
49
// Rock and roll
50
-$results = $fuse->search($workflow->argument());
+$results = $fuse->search($workflow->argument() ?? '');
51
52
foreach ($results as $result) {
53
$workflow->item()
0 commit comments