diff --git a/ui/.env b/ui/.env
index 99146835..302d78fd 100644
--- a/ui/.env
+++ b/ui/.env
@@ -8,4 +8,4 @@ PB_DOCS_URL = "https://pocketbase.io/docs/"
PB_JS_SDK_URL = "https://github.com/pocketbase/js-sdk"
PB_DART_SDK_URL = "https://github.com/pocketbase/dart-sdk"
PB_RELEASES = "https://github.com/pocketbase/pocketbase/releases"
-PB_VERSION = "v0.13.2"
+PB_VERSION = "v0.13.3"
diff --git a/ui/src/components/records/RecordFieldValue.svelte b/ui/src/components/records/RecordFieldValue.svelte
index 4454fdbe..10f9201c 100644
--- a/ui/src/components/records/RecordFieldValue.svelte
+++ b/ui/src/components/records/RecordFieldValue.svelte
@@ -2,6 +2,7 @@
import CommonHelper from "@/utils/CommonHelper";
import tooltip from "@/actions/tooltip";
import FormattedDate from "@/components/base/FormattedDate.svelte";
+ import CopyIcon from "@/components/base/CopyIcon.svelte";
import RecordFileThumb from "@/components/records/RecordFileThumb.svelte";
import RecordInfo from "@/components/records/RecordInfo.svelte";
import TinyMCE from "@tinymce/tinymce-svelte";
@@ -14,11 +15,17 @@
{#if field.type === "json"}
-
- {short
- ? CommonHelper.truncate(JSON.stringify(rawValue))
- : CommonHelper.truncate(JSON.stringify(rawValue, null, 2), 2000, true)}
-
+ {@const stringifiedJson = JSON.stringify(rawValue)}
+ {#if short}
+
+ {CommonHelper.truncate(stringifiedJson)}
+
+ {:else}
+
+ {CommonHelper.truncate(stringifiedJson, 500, true)}
+
+
| id | -+ |
| {field.name} |
-
+ |
|
created |
- |
+ updated |
- |
+ |