fix: circularprogress not updating to dyn vars

This commit is contained in:
Byson94
2025-11-01 18:30:43 +05:30
parent b53431d861
commit 08e1f2d5f3
2 changed files with 7 additions and 1 deletions

View File

@@ -5,6 +5,12 @@ All notable changes to `ewwii` are documented here.
This changelog follows the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format,
and this project adheres to [Semantic Versioning](https://semver.org/).
## [UNRELEASED]
## Fixed
- Circular progress bar not updating dynamically.
## [0.3.0] - 2025-11-01
## Added

View File

@@ -1156,7 +1156,7 @@ pub(super) fn build_circular_progress_bar(
}
});
let id = hash_props_and_type(&props, "CircularProgressBar");
let id = hash_props_and_type(&props, "CircularProgress");
widget_registry.widgets.insert(id, WidgetEntry { update_fn, widget: widget.clone().upcast() });