File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @openeo/processes-docgen" ,
3
- "version" : " 1.3.1 " ,
3
+ "version" : " 1.3.2 " ,
4
4
"author" : " openEO Consortium" ,
5
5
"contributors" : [
6
6
{
30
30
],
31
31
"dependencies" : {
32
32
"@openeo/js-commons" : " ^1.4.1" ,
33
- "@openeo/vue-components" : " ^2.9.1 " ,
33
+ "@openeo/vue-components" : " ^2.9.2 " ,
34
34
"axios" : " ^0.24.0" ,
35
35
"core-js" : " ^3.6.5" ,
36
- "vue" : " ~2.6.12" ,
37
- "vue-intersection-observer" : " ^0.1.9"
36
+ "vue" : " ~2.6.12"
38
37
},
39
38
"devDependencies" : {
40
39
"@vue/cli-plugin-babel" : " ^4.5.4" ,
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ export default {
133
133
links: [],
134
134
protocol: null ,
135
135
copied: null ,
136
- canCopy: navigator . clipboard && typeof navigator . clipboard . writeText === ' function '
136
+ canCopy: false
137
137
};
138
138
},
139
139
watch: {
@@ -171,6 +171,7 @@ export default {
171
171
});
172
172
this .protocol = window ? window .location .protocol : null ;
173
173
this .changeDocument ();
174
+ this .canCopy = navigator && navigator .clipboard && typeof navigator .clipboard .writeText === ' function' ;
174
175
},
175
176
methods: {
176
177
copyLink (process_id ) {
You can’t perform that action at this time.
0 commit comments