diff --git a/dashboard/src/components/group/Edit.svelte b/dashboard/src/components/group/Edit.svelte
index c3bfd8a4..176c88a3 100644
--- a/dashboard/src/components/group/Edit.svelte
+++ b/dashboard/src/components/group/Edit.svelte
@@ -139,7 +139,7 @@
-({input.description.length} / 1000 characters)
+({input.description ? input.description.length : 0} / 1000 characters)
{#if !loading}
{:else} {/if}
diff --git a/dashboard/src/components/member/Edit.svelte b/dashboard/src/components/member/Edit.svelte
index 794771dc..3c089cc6 100644
--- a/dashboard/src/components/member/Edit.svelte
+++ b/dashboard/src/components/member/Edit.svelte
@@ -172,7 +172,7 @@
-({input.description.length} / 1000 characters)
+({input.description ? input.description.length : 0} / 1000 characters)
{#if !loading}
{:else} {/if}
diff --git a/dashboard/src/components/system/Edit.svelte b/dashboard/src/components/system/Edit.svelte
index d4acbea4..7d90aa9d 100644
--- a/dashboard/src/components/system/Edit.svelte
+++ b/dashboard/src/components/system/Edit.svelte
@@ -103,6 +103,6 @@
-({input.description.length} / 1000 characters)
+({input.description ? input.description.length : 0} / 1000 characters)
{#if !loading}
{:else} {/if}
\ No newline at end of file