Skip to content

Commit

Permalink
fix element config.json commas (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebot authored Jul 30, 2023
1 parent 9e08d76 commit bd39a12
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/matrix/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sources:

type: application

version: 4.1.1
version: 4.1.2
appVersion: v1.88.0

maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/matrix/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# matrix

![Version: 4.1.1](https://img.shields.io/badge/Version-4.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.88.0](https://img.shields.io/badge/AppVersion-v1.88.0-informational?style=flat-square)
![Version: 4.1.2](https://img.shields.io/badge/Version-4.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.88.0](https://img.shields.io/badge/AppVersion-v1.88.0-informational?style=flat-square)

A Helm chart to deploy a Matrix homeserver stack into Kubernetes

Expand Down
6 changes: 3 additions & 3 deletions charts/matrix/templates/element/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ data:
"brand": {{ .Values.element.branding.brand | quote }},
"branding": {
{{- if .Values.element.branding.welcomeBackgroundUrl }}
"welcomeBackgroundUrl": {{ .Values.element.branding.welcomeBackgroundUrl | quote }},
"welcomeBackgroundUrl": {{ .Values.element.branding.welcomeBackgroundUrl | quote }}{{ if .Values.element.branding.authHeaderLogoUrl }},{{- end }}
{{- end }}
{{- if .Values.element.branding.authHeaderLogoUrl }}
"authHeaderLogoUrl": {{ .Values.element.branding.authHeaderLogoUrl | quote }},
"authHeaderLogoUrl": {{ .Values.element.branding.authHeaderLogoUrl | quote }}{{ if .Values.element.branding.authFooterLinks }},{{- end }}
{{- end }}
{{- if .Values.element.branding.authFooterLinks }}
"authFooterLinks": {{ .Values.element.branding.authFooterLinks | toJson }},
"authFooterLinks": {{ .Values.element.branding.authFooterLinks | toJson }}
{{- end }}
},
{{- if .Values.element.integrations.enabled }}
Expand Down

0 comments on commit bd39a12

Please sign in to comment.