diff options
author | xenoxeno <xeno@ydb.tech> | 2022-10-07 12:06:56 +0300 |
---|---|---|
committer | xenoxeno <xeno@ydb.tech> | 2022-10-07 12:06:56 +0300 |
commit | fd64585de261a8b2057fc53be5ca400b20bbe476 (patch) | |
tree | 9e8e7f8c23c386405485bcb56b089ae183f0d167 | |
parent | 7d8750fd6d15471568717178c299c33ce2d46076 (diff) | |
download | ydb-fd64585de261a8b2057fc53be5ca400b20bbe476.tar.gz |
fix wrong json rendering
-rw-r--r-- | ydb/core/viewer/json_storage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/viewer/json_storage.h b/ydb/core/viewer/json_storage.h index 91891e6da81..fd6dec6e0ff 100644 --- a/ydb/core/viewer/json_storage.h +++ b/ydb/core/viewer/json_storage.h @@ -433,7 +433,7 @@ public: json << '}'; } else { json << "{"; - TProtoToJson::ProtoToJson(json, vSlotId, jsonSettings); + TProtoToJson::ProtoToJsonInline(json, vSlotId, jsonSettings); json << "}"; } } |