Selaa lähdekoodia

only give out a ReadOnlySignal from async resources

Evan Almloff 1 vuosi sitten
vanhempi
commit
38bdab880d
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      packages/hooks/src/use_resource.rs

+ 2 - 2
packages/hooks/src/use_resource.rs

@@ -95,8 +95,8 @@ impl<T> AsyncMemo<T> {
     /// Return any value, even old values if the future has not yet resolved.
     /// Return any value, even old values if the future has not yet resolved.
     ///
     ///
     /// If the future has never completed, the returned value will be `None`.
     /// If the future has never completed, the returned value will be `None`.
-    pub fn value(&self) -> Option<Signal<T>> {
-        self.value.cloned()
+    pub fn value(&self) -> Option<ReadOnlySignal<T>> {
+        self.value.cloned().map(|sig| sig.into())
     }
     }
 
 
     /// Get the ID of the future in Dioxus' internal scheduler
     /// Get the ID of the future in Dioxus' internal scheduler