lint and clippy
This commit is contained in:
parent
316560ac1e
commit
992999d528
1 changed files with 2 additions and 7 deletions
|
@ -2,7 +2,7 @@ use super::loader::Loader;
|
||||||
|
|
||||||
use web_sys::Node;
|
use web_sys::Node;
|
||||||
use yew::virtual_dom::VNode;
|
use yew::virtual_dom::VNode;
|
||||||
use yew::{html, Html, function_component};
|
use yew::{function_component, html, Html};
|
||||||
|
|
||||||
#[function_component(App)]
|
#[function_component(App)]
|
||||||
pub fn app() -> Html {
|
pub fn app() -> Html {
|
||||||
|
@ -35,15 +35,11 @@ fn footer() -> Html {
|
||||||
"this has only been tested on GPX files produced by \
|
"this has only been tested on GPX files produced by \
|
||||||
<a href='https://strava.com'>strava</a> and \
|
<a href='https://strava.com'>strava</a> and \
|
||||||
<a href='https://garmin.com'>garmin</a>",
|
<a href='https://garmin.com'>garmin</a>",
|
||||||
|
|
||||||
"all third-party extension info \
|
"all third-party extension info \
|
||||||
<a href='https://github.com/georust/gpx/issues/8'>\
|
<a href='https://github.com/georust/gpx/issues/8'>\
|
||||||
is stripped</a>",
|
is stripped</a>",
|
||||||
|
|
||||||
"if the app breaks, try refreshing the page",
|
"if the app breaks, try refreshing the page",
|
||||||
|
|
||||||
"source (public access): git://pingo.thermokar.st/gpx-web-utils",
|
"source (public access): git://pingo.thermokar.st/gpx-web-utils",
|
||||||
|
|
||||||
"source (mirror): \
|
"source (mirror): \
|
||||||
<a href='https://github.com/thermokarst/gpx-web-utils'>\
|
<a href='https://github.com/thermokarst/gpx-web-utils'>\
|
||||||
https://github.com/thermokarst/gpx-web-utils</a>",
|
https://github.com/thermokarst/gpx-web-utils</a>",
|
||||||
|
@ -70,7 +66,6 @@ fn li(data: &str) -> Html {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
li.set_inner_html(data);
|
li.set_inner_html(data);
|
||||||
let node = Node::from(li);
|
let node = Node::from(li);
|
||||||
let vnode = VNode::VRef(node);
|
|
||||||
|
|
||||||
vnode
|
VNode::VRef(node)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue