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.
only-upload
1 parent 0559300 commit da6f53fCopy full SHA for da6f53f
CHANGELOG.md
@@ -0,0 +1,13 @@
1
+Changelog
2
+=========
3
+
4
+1.0.1 (2025-12-03)
5
+------------------
6
7
+- Fix error with option `only-upload`
8
9
10
+1.0.0 (2025-12-02)
11
12
13
+- First release
src/Livewire/Item.php
@@ -271,7 +271,7 @@ protected function hasUploadedFile(): bool
271
272
protected function hasSavedFile(): bool
273
{
274
- return $this->itemData['id'] !== null;
+ return isset($this->itemData['id']);
275
}
276
277
protected function hasFile(): bool
0 commit comments