Hayashi Mikihiro
Hayashi Mikihiro
I can reproduce on Firefox 123.0 for MacOS. When I clicked 'Get Started', the `` tag was created twice. The website updates only the second ``tag and leaves the others...
Clicking on the "News" also works like clicking on the logo. https://github.com/sycamore-rs/sycamore/assets/29543842/7f004313-798d-4491-803a-bea0eda424e3
I think to use a column from another table, it might be better to consider using function `select_also` and `cursor_by_other`. ### Example ```rs let result = media_files::Entity::find() .select_also(media_file_albums::Entity) .join( JoinType::LeftJoin,...