AppManager: Format cue files

Change-Id: Ia37908797b0227ab3b66e0faab08dcc2379e5282
diff --git a/core/installer/values-tmpl/jellyfin.cue b/core/installer/values-tmpl/jellyfin.cue
index 3fecee0..982eb69 100644
--- a/core/installer/values-tmpl/jellyfin.cue
+++ b/core/installer/values-tmpl/jellyfin.cue
@@ -1,15 +1,15 @@
 input: {
-	network: #Network @name(Network)
-	subdomain: string @name(Subdomain)
+	network:   #Network @name(Network)
+	subdomain: string   @name(Subdomain)
 }
 
 _domain: "\(input.subdomain).\(input.network.domain)"
-url: "https://\(_domain)"
+url:     "https://\(_domain)"
 
-name: "Jellyfin"
-namespace: "app-jellyfin"
+name:        "Jellyfin"
+namespace:   "app-jellyfin"
 description: "Jellyfin is a free and open-source media server and suite of multimedia applications designed to organize, manage, and share digital media files to networked devices."
-icon: "<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 48 48'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='M24 20c-1.62 0-6.85 9.48-6.06 11.08s11.33 1.59 12.12 0S25.63 20 24 20Z'/><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='M24 5.5c-4.89 0-20.66 28.58-18.25 33.4s34.13 4.77 36.51 0S28.9 5.5 24 5.5Zm12 29.21c-1.56 3.13-22.35 3.17-23.93 0S20.8 12.83 24 12.83s13.52 18.76 12 21.88Z'/></svg>"
+icon:        "<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 48 48'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='M24 20c-1.62 0-6.85 9.48-6.06 11.08s11.33 1.59 12.12 0S25.63 20 24 20Z'/><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='M24 5.5c-4.89 0-20.66 28.58-18.25 33.4s34.13 4.77 36.51 0S28.9 5.5 24 5.5Zm12 29.21c-1.56 3.13-22.35 3.17-23.93 0S20.8 12.83 24 12.83s13.52 18.76 12 21.88Z'/></svg>"
 
 readme: "jellyfin application will be installed on \(input.network.name) network and be accessible to any user on https://\(_domain)"
 
@@ -17,18 +17,18 @@
 	images: {
 		jellyfin: {
 			repository: "jellyfin"
-			name: "jellyfin"
-			tag: "10.8.10"
+			name:       "jellyfin"
+			tag:        "10.8.10"
 			pullPolicy: "IfNotPresent"
 		}
 	}
 
 	charts: {
 		jellyfin: {
-			kind: "GitRepository"
+			kind:    "GitRepository"
 			address: "https://code.v1.dodo.cloud/helm-charts"
-			branch: "main"
-			path: "charts/jellyfin"
+			branch:  "main"
+			path:    "charts/jellyfin"
 		}
 	}
 
@@ -39,11 +39,11 @@
 				pcloudInstanceId: global.id
 				ingress: {
 					className: input.network.ingressClass
-					domain: _domain
+					domain:    _domain
 				}
 				image: {
 					repository: images.jellyfin.fullName
-					tag: images.jellyfin.tag
+					tag:        images.jellyfin.tag
 					pullPolicy: images.jellyfin.pullPolicy
 				}
 			}