Scouting App: Fix bootstrap icons CDN

Currently, the scouting app fails to load the bootstrap icons resource. This patch
fixes this issue so icons, like the delete icon in the view tab, are displayed
properly.

Signed-off-by: Filip Kujawa <filip.j.kujawa@gmail.com>
Change-Id: Iff0b7df49f9dca005c9f72202de3462d8e81587a
diff --git a/scouting/www/index.html b/scouting/www/index.html
index afc589e..46779cc 100644
--- a/scouting/www/index.html
+++ b/scouting/www/index.html
@@ -12,7 +12,8 @@
     />
     <link
       rel="stylesheet"
-      href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.c"
+      href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css"
+      integrity="d8824f7067cdfea38afec7e9ffaf072125266824206d69ef1f112d72153a505e"
     />
     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
   </head>