diff --git a/deploy/docker-swarm/clickhouse-setup/docker-compose.yaml b/deploy/docker-swarm/clickhouse-setup/docker-compose.yaml index 73681aa72c..378d47aebd 100644 --- a/deploy/docker-swarm/clickhouse-setup/docker-compose.yaml +++ b/deploy/docker-swarm/clickhouse-setup/docker-compose.yaml @@ -144,7 +144,7 @@ services: condition: on-failure query-service: - image: signoz/query-service:0.31.0 + image: signoz/query-service:0.31.1 command: [ "-config=/root/config/prometheus.yml", @@ -184,7 +184,7 @@ services: <<: *clickhouse-depend frontend: - image: signoz/frontend:0.31.0 + image: signoz/frontend:0.31.1 deploy: restart_policy: condition: on-failure diff --git a/deploy/docker/clickhouse-setup/docker-compose.yaml b/deploy/docker/clickhouse-setup/docker-compose.yaml index c9f7be2769..9b06be11bc 100644 --- a/deploy/docker/clickhouse-setup/docker-compose.yaml +++ b/deploy/docker/clickhouse-setup/docker-compose.yaml @@ -162,7 +162,7 @@ services: # Notes for Maintainers/Contributors who will change Line Numbers of Frontend & Query-Section. Please Update Line Numbers in `./scripts/commentLinesForSetup.sh` & `./CONTRIBUTING.md` query-service: - image: signoz/query-service:${DOCKER_TAG:-0.31.0} + image: signoz/query-service:${DOCKER_TAG:-0.31.1} container_name: signoz-query-service command: [ @@ -201,7 +201,7 @@ services: <<: *clickhouse-depend frontend: - image: signoz/frontend:${DOCKER_TAG:-0.31.0} + image: signoz/frontend:${DOCKER_TAG:-0.31.1} container_name: signoz-frontend restart: on-failure depends_on: diff --git a/frontend/src/container/LogDetailedView/TableView.tsx b/frontend/src/container/LogDetailedView/TableView.tsx index 17446b0118..9237136349 100644 --- a/frontend/src/container/LogDetailedView/TableView.tsx +++ b/frontend/src/container/LogDetailedView/TableView.tsx @@ -63,7 +63,7 @@ function TableView({ .map((key) => ({ key, field: key, - value: removeEscapeCharacters(JSON.stringify(flattenLogData[key])), + value: JSON.stringify(flattenLogData[key]), })); const onTraceHandler = (record: DataType) => (): void => { @@ -182,7 +182,7 @@ function TableView({ return ( - {field} + {removeEscapeCharacters(field)} ); },