Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix compatibility #158

Merged
merged 1 commit into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: vesoft/nebula-graph-studio:v3.2.2
tags: vesoft/nebula-graph-studio:v3.2.3
2 changes: 1 addition & 1 deletion app/utils/function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:
pullPolicy: IfNotPresent
nebulaStudio:
name: vesoft/nebula-graph-studio
version: v3.2.2
version: v3.2.3

imagePullSecrets: []

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nebula-graph-studio",
"version": "3.2.2",
"version": "3.2.3",
"description": "nebula-graph-studio",
"private": true,
"scripts": {
Expand Down