diff --git a/src/webui/service/templates/service/detail.html b/src/webui/service/templates/service/detail.html
index 7d3c72a80a9e7427e7a8e629444f9ddcccbd0059..bee2e93c53896a8eeac826703a60afe02a5aa825 100644
--- a/src/webui/service/templates/service/detail.html
+++ b/src/webui/service/templates/service/detail.html
@@ -157,7 +157,7 @@
             <td>SLA Availability</td>
             <td>-</td>
             <td>
-                {{ round(constraint.sla_availability.availability, ndigits=2) }} %;
+                {{ round(constraint.sla_availability.availability, ndigits=5) }} %;
                 {{ constraint.sla_availability.num_disjoint_paths }} disjoint paths;
                 {% if constraint.sla_availability.all_active %}all{% else %}single{% endif %}-active
             </td>
diff --git a/src/webui/service/templates/slice/detail.html b/src/webui/service/templates/slice/detail.html
index 6c35e6b509d525ea3c2565c4effc2993c9e53857..8f223e44deda37b177a360a51b1e366f680fac27 100644
--- a/src/webui/service/templates/slice/detail.html
+++ b/src/webui/service/templates/slice/detail.html
@@ -157,7 +157,7 @@
             <td>SLA Availability</td>
             <td>-</td>
             <td>
-                {{ round(constraint.sla_availability.availability, ndigits=2) }} %;
+                {{ round(constraint.sla_availability.availability, ndigits=5) }} %;
                 {{ constraint.sla_availability.num_disjoint_paths }} disjoint paths;
                 {% if constraint.sla_availability.all_active %}all{% else %}single{% endif %}-active
             </td>