Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion reflex/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def as_event_spec(self, handler: EventHandler) -> EventSpec:
upload_files_context_var_data,
)

upload_id = self.upload_id or DEFAULT_UPLOAD_ID
upload_id = self.upload_id if self.upload_id is not None else DEFAULT_UPLOAD_ID
spec_args = [
(
Var(_js_expr="files"),
Expand Down
Loading