Skip to content

Commit

Permalink
Merge pull request #3743 from SigNoz/release/v0.31.1
Browse files Browse the repository at this point in the history
Release/v0.31.1
  • Loading branch information
prashant-shahi authored Oct 13, 2023
2 parents 3c63d66 + 2d6c5f4 commit ad62106
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions deploy/docker-swarm/clickhouse-setup/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions deploy/docker/clickhouse-setup/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
[
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/container/LogDetailedView/TableView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down Expand Up @@ -182,7 +182,7 @@ function TableView({

return (
<CopyClipboardHOC textToCopy={textToCopy}>
<span style={{ color: orange[6] }}>{field}</span>
<span style={{ color: orange[6] }}>{removeEscapeCharacters(field)}</span>
</CopyClipboardHOC>
);
},
Expand Down

0 comments on commit ad62106

Please sign in to comment.