File tree 3 files changed +2
-6
lines changed
3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 45
45
"@openeo/js-client" : " ^2.5.1" ,
46
46
"@openeo/js-commons" : " ^1.4.1" ,
47
47
"@openeo/js-processgraphs" : " ^1.3.0" ,
48
- "@openeo/vue-components" : " ^2.8.0 " ,
48
+ "@openeo/vue-components" : " ^2.8.1 " ,
49
49
"ajv" : " ^6.12.6" ,
50
50
"axios" : " ^0.24.0" ,
51
51
"chart.js" : " ^3.7.1" ,
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ export default {
206
206
},
207
207
async created () {
208
208
var serverFromQuery = Utils .param (' server' );
209
- if (! this .$config .serverUrl && Utils . isUrl ( serverFromQuery) ) {
209
+ if (! this .$config .serverUrl && serverFromQuery) {
210
210
this .serverUrl = serverFromQuery;
211
211
}
212
212
Original file line number Diff line number Diff line change @@ -200,10 +200,6 @@ class Utils extends VueUtils {
200
200
return urlParams . get ( name ) ;
201
201
}
202
202
203
- static isUrl ( url ) {
204
- return ( VueUtils . hasText ( url ) && url . match ( / ^ h t t p s ? : \/ \/ / i) !== null ) ;
205
- }
206
-
207
203
static isBboxInWebMercator ( bboxes ) {
208
204
if ( ! bboxes ) {
209
205
return null ;
You can’t perform that action at this time.
0 commit comments