diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89e962f3..778f6742 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,4 +41,4 @@ jobs: context: . file: ./Dockerfile push: true - tags: vesoft/nebula-graph-studio:v3.2.2 \ No newline at end of file + tags: vesoft/nebula-graph-studio:v3.2.3 \ No newline at end of file diff --git a/app/utils/function.ts b/app/utils/function.ts index f96646b0..156352a2 100644 --- a/app/utils/function.ts +++ b/app/utils/function.ts @@ -6,7 +6,7 @@ export const handleKeyword = (name: string) => { }; export const handleEscape = (name: string) => - name.replaceAll(/\\/gm, '\\\\').replaceAll('`', '\\`'); + name.replace(/\\/gm, '\\\\').replace(/`/gm, '\\`'); export const handleVidStringName = (name: string, spaceVidType?: string) => { if (spaceVidType && spaceVidType === 'INT64') { diff --git a/deployment/helm/README.md b/deployment/helm/README.md index 311ab1c0..e1dcd537 100644 --- a/deployment/helm/README.md +++ b/deployment/helm/README.md @@ -48,7 +48,7 @@ $ helm uninstall my-studio |-----------|-------------|---------| | replicaCount | Replicas for Deployment | 0 | | image.nebulaStudio.name | The image name of nebula-graph-studio | vesoft/nebula-graph-studio | -| image.nebulaStudio.version | The image version nebula-graph-studio | v3.2.2 | +| image.nebulaStudio.version | The image version nebula-graph-studio | v3.2.3 | | service.type | The service type, should be one of ['NodePort', 'ClusterIP', 'LoadBalancer'] | ClusterIP | | service.port | The expose port for nebula-studio server | 7001 | | service.nodePort | The proxy port for accessing nebula-studio outside k8s cluster | 32701 | diff --git a/deployment/helm/values.yaml b/deployment/helm/values.yaml index ed317a16..04a2af37 100644 --- a/deployment/helm/values.yaml +++ b/deployment/helm/values.yaml @@ -4,7 +4,7 @@ image: pullPolicy: IfNotPresent nebulaStudio: name: vesoft/nebula-graph-studio - version: v3.2.2 + version: v3.2.3 imagePullSecrets: [] diff --git a/package-lock.json b/package-lock.json index 0ac4a3f8..65769c12 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nebula-graph-studio", - "version": "3.2.2", + "version": "3.2.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 17f3137c..8f12b0c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nebula-graph-studio", - "version": "3.2.2", + "version": "3.2.3", "description": "nebula-graph-studio", "private": true, "scripts": {