Skip to content

Commit

Permalink
Remove links to assets from release notes (#1833)
Browse files Browse the repository at this point in the history
  • Loading branch information
DocMoebiuz authored Oct 5, 2024
1 parent b4a4f22 commit 4264fd1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion UI/Dialogs/WelcomeDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ private async void WebView21_NavigationCompleted(object sender, Microsoft.Web.We
await webView.ExecuteScriptAsync($"" +
$"document.getElementById('repository-container-header').remove();" +
$"document.getElementsByClassName('js-header-wrapper')[0].remove();" +
$"document.getElementsByClassName('footer')[0].remove();");
$"document.getElementsByClassName('footer')[0].remove();" +
@"document.getElementsByClassName('Box-footer')[0].childNodes.forEach((item, i)=>{{ if (i>0) item.remove(); }});"
);
}

private void button1_Click(object sender, EventArgs e)
Expand Down

0 comments on commit 4264fd1

Please sign in to comment.