This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
index-7dc710a19c1e9e07_bg.wasm:0x5821e Uncaught (in promise) RuntimeError: memory access out of bounds | |
at web_frontend::now_playing::NowPlaying::{{closure}}::h618668ee8b828cc2 (index-7dc710a19c1e9e07_bg.wasm:0x5821e) | |
at core::option::Option<T>::map::h066820a9fde16a91 (index-7dc710a19c1e9e07_bg.wasm:0x4937b3) | |
at dioxus_core::lazynodes::LazyNodes::new::{{closure}}::h957217fe08271104 (index-7dc710a19c1e9e07_bg.wasm:0x4c94c8) | |
at dioxus_core::lazynodes::LazyStack::call::h9528249f7f5cf02e (index-7dc710a19c1e9e07_bg.wasm:0x42deba) | |
at dioxus_core::lazynodes::LazyNodes::call::h08916cd639530c98 (index-7dc710a19c1e9e07_bg.wasm:0x48771a) | |
at <dioxus_core::lazynodes::LazyNodes as dioxus_core::nodes::IntoVNode>::into_vnode::h57b2add8575b6929 (index-7dc710a19c1e9e07_bg.wasm:0x587a66) | |
at dioxus_core::nodes::NodeFactory::fragment_from_iter::h61804eca3de7f27f (index-7dc710a19c1e9e07_bg.wasm:0x2dfe50) | |
at web_frontend::now_playing::NowPlaying::{{closure}}::h1644364a1a0054ef (index-7dc710a19c1e9e07_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Uncaught (in promise) RuntimeError: memory access out of bounds | |
at alloc::vec::Vec<T>::new::hf9ca0a30666a765b (index-64458e6c5e79bf41_bg.wasm:0x641e55) | |
at <web_frontend::css::Classes as core::fmt::Display>::fmt::h92eba37929d12b17 (index-64458e6c5e79bf41_bg.wasm:0x3806f0) | |
at core::fmt::write::h8874ba14b0fd43fe (index-64458e6c5e79bf41_bg.wasm:0x42aa13) | |
at core::fmt::Write::write_fmt::hf235f999ec1c8db9 (index-64458e6c5e79bf41_bg.wasm:0x51dc44) | |
at dioxus_core::nodes::NodeFactory::raw_text::h4b3270c64d5ebeb6 (index-64458e6c5e79bf41_bg.wasm:0x45f7a6) | |
at dioxus_core::nodes::NodeFactory::attr::hbde33bf5b2d352a1 (index-64458e6c5e79bf41_bg.wasm:0x4d3d93) | |
at dioxus_html::global_attributes::GlobalAttributes::class::h58583d60f86cd0b1 (index-64458e6c5e79bf41_bg.wasm:0x4ee704) | |
at web_frontend::now_playing::NowPlaying::{{closure}}::h1644364a1a0054ef (index-64458e6c5e79bf41_bg.wasm:0x4dad7) | |
at core::option::Option<T>::map::h4de954bd25370e25 (index-64458e6c5e79bf41_bg.wasm:0x4ab417) |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DO NOT EDIT THIS FILE - IT'S GENERATED, CHANGES WILL BE LOST! | |
#[allow(non_snake_case, dead_code)] | |
pub struct CssClasses<'a> { | |
pub container: &'a str, | |
pub sr_only: &'a str, | |
pub not_sr_only: &'a str, | |
pub focus_within__sr_only: &'a str, | |
pub focus_within__not_sr_only: &'a str, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub struct Modifiers { | |
hover: &'static str, | |
focus: &'static str, | |
focus_within: &'static str, | |
focus_visible: &'static str, | |
active: &'static str, | |
visited: &'static str, | |
target: &'static str, | |
first: &'static str, | |
last: &'static str, |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DO NOT EDIT THIS FILE - IT'S GENERATED, CHANGES WILL BE LOST! | |
#[allow(non_snake_case, dead_code)] | |
pub struct CssClasses<'a> { | |
pub container: &'a str, | |
pub sr_only: &'a str, | |
pub not_sr_only: &'a str, | |
pub focus_within__sr_only: &'a str, | |
pub focus_within__not_sr_only: &'a str, |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DO NOT EDIT THIS FILE - IT'S GENERATED, CHANGES WILL BE LOST! | |
#[allow(non_snake_case, dead_code)] | |
pub struct CssClasses<'a> { | |
pub container: &'a str, | |
pub sr_only: &'a str, | |
pub not_sr_only: &'a str, | |
pub focus_within__sr_only: &'a str, | |
pub focus_within__not_sr_only: &'a str, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub(crate) fn Artist(cx: Scope) -> Element { | |
log::info!("Artist"); | |
let route = use_route(&cx); | |
// route.debug(); | |
let artist_id = route | |
.segment::<String>("artist_id") | |
.expect("artist_id parameter was not found in path somehow") | |
.expect("artist_id parameter could not be parsed as a String"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use crate::{ | |
client::{get_artist_response, ReleaseListItem}, | |
components::{AlbumCover, PageTitle, UserFacingError}, | |
storage, | |
util::{maybe_plural, new_client}, | |
}; | |
use dioxus::{ | |
prelude::*, | |
router::{use_route, Link}, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
panicked at 'called `Option::unwrap()` on a `None` value', /home/autarch/projects/dioxus/packages/core/src/diff.rs:285:60 | |
Stack: | |
Error | |
at imports.wbg.__wbg_new_693216e109162396 (http://localhost:8080/index-16e1788b371ad9c4.js:791:15) | |
at console_error_panic_hook::Error::new::h21799904442af64e (http://localhost:8080/index-16e1788b371ad9c4_bg.wasm:wasm-function[19375]:0x639e26) | |
at console_error_panic_hook::hook_impl::h8d2838fa12eec521 (http://localhost:8080/index-16e1788b371ad9c4_bg.wasm:wasm-function[2262]:0x4667f7) | |
at console_error_panic_hook::hook::h662597d872d749ad (http://localhost:8080/index-16e1788b371ad9c4_bg.wasm:wasm-function[21865]:0x64232a) | |
at core::ops::function::Fn::call::h98da654cb67c663e (http://localhost:8080/index-16e1788b371ad9c4_bg.wasm:wasm-function[14188]:0x60b842) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
panicked at 'component scope already exists', /home/autarch/projects/dioxus/packages/core/src/diff.rs:274:9 | |
Stack: | |
Error | |
at imports.wbg.__wbg_new_693216e109162396 (http://localhost:8080/index-3c20e4260217acb9.js:791:15) | |
at console_error_panic_hook::Error::new::h21799904442af64e (http://localhost:8080/index-3c20e4260217acb9_bg.wasm:wasm-function[19244]:0x6346ac) | |
at console_error_panic_hook::hook_impl::h8d2838fa12eec521 (http://localhost:8080/index-3c20e4260217acb9_bg.wasm:wasm-function[2259]:0x464538) | |
at console_error_panic_hook::hook::h662597d872d749ad (http://localhost:8080/index-3c20e4260217acb9_bg.wasm:wasm-function[21704]:0x63c9c7) | |
at core::ops::function::Fn::call::h47ed7ff18cf6bd94 (http://localhost:8080/index-3c20e4260217acb9_bg.wasm:wasm-function[14119]:0x606994) |