Skip to content

Commit

Permalink
Remiove _beta_ badge for asn1 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBestTvarynka authored Aug 24, 2024
1 parent cc09a1f commit 263b388
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/asn1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,9 @@ pub fn asn1_parser_page() -> Html {
html! {
<div class={classes!("vertical", "asn1-page")} {onkeydown}>
<span>
{"Still in β (beta). See "}
<a href="https://github.com/TheBestTvarynka/crypto-helper/tree/main/crates/asn1-parser#supported-asn1-types" class="a-link">
{"list of supported asn1 types"}
</a>
<a href="https://github.com/TheBestTvarynka/crypto-helper/tree/main/crates/asn1-parser#supported-asn1-types" class="a-link">
{"list of supported asn1 types"}
</a>
{". Report a bug/feature "}<a href="https://github.com/TheBestTvarynka/crypto-helper/issues/new" class="a-link">{"here"}</a>{"."}
</span>
<ByteInput bytes={(*raw_asn1).clone()} setter={Callback::from(move |data| raw_asn1_setter.set(data))} placeholder={"asn1 data".to_owned()} rows={10} />
Expand Down
2 changes: 1 addition & 1 deletion src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub fn header() -> Html {
<header>
<Link<Route> to={Route::CryptoHelper}>{"Crypto helper"}</Link<Route>>
<Link<Route> to={Route::Jwt}>{"JWT debugger"}</Link<Route>>
<Link<Route> to={Route::Asn1Parser}>{"Asn1 debugger (beta)"}</Link<Route>>
<Link<Route> to={Route::Asn1Parser}>{"Asn1 debugger"}</Link<Route>>
<Link<Route> to={Route::Diff}>{"Diff"}</Link<Route>>
<Link<Route> to={Route::About}>{"About"}</Link<Route>>
</header>
Expand Down

0 comments on commit 263b388

Please sign in to comment.