Skip to content

Commit 6077839

Browse files
committed
Ensure we are showing a fixed percent in the grid for users.
1 parent fda095f commit 6077839

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Exceptionless.Web/ClientApp/src/lib/features/events/components/table/stack-status-cell.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
22
import type { StackStatus } from '$features/stacks/models';
33
4-
import StackStatusBadge from "$features/stacks/components/stack-status-badge.svelte";
4+
import StackStatusBadge from '$features/stacks/components/stack-status-badge.svelte';
55
66
interface Props {
77
value: StackStatus;

src/Exceptionless.Web/ClientApp/src/lib/features/events/components/table/stack-users-summary-cell.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
</script>
1212

1313
<abbr title={`${source.users} of ${source.total_users} users`}>
14-
{percentage.toFixed()}%
14+
{percentage.toFixed(1)}%
1515
</abbr>

0 commit comments

Comments
 (0)