@@ -6,11 +6,11 @@ postgresql
66 ol.breadcrumb
77
88 li.breadcrumb-item
9- a( href ='/#/list' )
9+ a( href ='. /#/list' )
1010 | PostgreSQL clusters
1111
1212 li.breadcrumb-item ( if ='{ cluster_path }' )
13- a( href ='/#/status/{ cluster_path }' )
13+ a( href ='. /#/status/{ cluster_path }' )
1414 | { qname }
1515
1616 .row ( if ='{ cluster_path }' )
@@ -39,20 +39,20 @@ postgresql
3939 )
4040
4141 a.btn.btn-info (
42- href ='/#/logs/{ cluster_path }'
42+ href ='. /#/logs/{ cluster_path }'
4343 )
4444 | Logs
4545
4646 a.btn (
4747 class ='btn-{ opts.read_write ? "primary" : "info" }'
4848 if ='{ progress.postgresql }'
49- href ='/#/clone/{ clustername }/{ uid }/{ encodeURI(new Date().toISOString()) }'
49+ href ='. /#/clone/{ clustername }/{ uid }/{ encodeURI(new Date().toISOString()) }'
5050 )
5151 | Clone
5252
5353 a.btn (
5454 class ='btn-{ opts.read_write ? "warning" : "info" }'
55- href ='/#/edit/{ cluster_path }'
55+ href ='. /#/edit/{ cluster_path }'
5656 )
5757 | Edit
5858
@@ -124,7 +124,7 @@ postgresql
124124
125125 this .pollProgress = () => {
126126 jQuery .get (
127- ' /postgresqls/' + this .cluster_path ,
127+ ' . /postgresqls/' + this .cluster_path ,
128128 ).done (data => {
129129 this .progress .pooler = false
130130 this .progress .postgresql = true
@@ -137,13 +137,13 @@ postgresql
137137 this .update ()
138138
139139 jQuery .get (
140- ' /statefulsets/' + this .cluster_path ,
140+ ' . /statefulsets/' + this .cluster_path ,
141141 ).done (data => {
142142 this .progress .statefulSet = true
143143 this .update ()
144144
145145 jQuery .get (
146- ' /statefulsets/' + this .cluster_path + ' /pods' ,
146+ ' . /statefulsets/' + this .cluster_path + ' /pods' ,
147147 ).done (data => {
148148 if (data .length > 0 ) {
149149 this .progress .containerFirst = true
@@ -157,7 +157,7 @@ postgresql
157157 this .update ()
158158
159159 jQuery .get (
160- ' /services/' + this .cluster_path ,
160+ ' . /services/' + this .cluster_path ,
161161 ).done (data => {
162162 if (data .metadata && data .metadata .annotations && ' zalando.org/dnsname' in data .metadata .annotations ) {
163163 this .progress .dnsName = data .metadata .annotations [' zalando.org/dnsname' ]
@@ -169,12 +169,12 @@ postgresql
169169 }
170170
171171 if (this .progress .poolerEnabled == true ) {
172- jQuery .get (' /pooler/' + this .cluster_path ).done (data => {
172+ jQuery .get (' . /pooler/' + this .cluster_path ).done (data => {
173173 this .progress .pooler = {" url" : " " }
174174 this .update ()
175175 })
176176 }
177-
177+
178178 this .update ()
179179 })
180180 })
0 commit comments