mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
commit
52e653316e
2 changed files with 2 additions and 2 deletions
|
@ -591,7 +591,6 @@ impl<El: ElementDescriptor + 'static> HtmlElement<El> {
|
|||
{
|
||||
cfg_if! {
|
||||
if #[cfg(debug_assertions)] {
|
||||
let span = self.span.clone();
|
||||
let onspan = ::tracing::span!(
|
||||
parent: &self.span,
|
||||
::tracing::Level::TRACE,
|
||||
|
|
|
@ -63,7 +63,8 @@ pub fn create_signal<T>(cx: Scope, value: T) -> (ReadSignal<T>, WriteSignal<T>)
|
|||
s
|
||||
}
|
||||
|
||||
/// Creates a signal that always contains the most recent value emitted by a [Stream].
|
||||
/// Creates a signal that always contains the most recent value emitted by a
|
||||
/// [Stream](futures::stream::Stream).
|
||||
/// If the stream has not yet emitted a value since the signal was created, the signal's
|
||||
/// value will be `None`.
|
||||
#[cfg_attr(
|
||||
|
|
Loading…
Reference in a new issue