File tree 4 files changed +9
-8
lines changed
4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 20
20
21
21
< div id ="app " class ="container-fluid no-gutters h-100 ">
22
22
23
- < log ref ="log "> </ log >
24
-
25
23
<!-- <div id="header" class="row">
26
24
<h1 class="col-3">Name</h1>
27
25
@@ -56,8 +54,7 @@ <h1 class="col-3">Name</h1>
56
54
<!-- minimap -->
57
55
< minimap :scale ="scale " :moved-elements ="movedElements " :translation ="translation " :paper ="paper " :graph ="graph "> </ minimap >
58
56
59
- <!-- trash -->
60
- <!-- <div id="trash"><i class="fas fa-trash"></i></div> -->
57
+ < log ref ="log "> </ log >
61
58
62
59
<!-- content -->
63
60
< div id ="paper-html-elements " class ="h-100 "> </ div >
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ const getTypeName = type => {
45
45
46
46
const webservicesDecorator = xml => {
47
47
const json = [ ] ;
48
-
49
48
for ( const algoData of xml . Services . Service ) {
50
49
const {
51
50
Id : [ id ] ,
@@ -105,10 +104,16 @@ const webservicesDecorator = xml => {
105
104
if ( outputsData ) {
106
105
for ( const output of outputsData . Output ) {
107
106
const {
108
- Description : [ description ] ,
107
+ Description,
109
108
Name : [ name ] ,
110
109
Type : [ typeData ]
111
110
} = output ;
111
+
112
+ let description ;
113
+ if ( Description ) {
114
+ description = Description [ 0 ] ;
115
+ }
116
+
112
117
const { type, allowed } = getTypeName ( typeData ) ;
113
118
const out = {
114
119
description,
Original file line number Diff line number Diff line change @@ -95,7 +95,6 @@ export const initKeyboardEvents = () => {
95
95
}
96
96
case " " : {
97
97
spaceDown = true ;
98
- event . preventDefault ( ) ;
99
98
break ;
100
99
}
101
100
default :
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export function resetValue(event) {
71
71
case Inputs . NUMBER . tag :
72
72
$ ( el . parentNode . querySelector ( Inputs . NUMBER . tag ) )
73
73
. val ( defaultValue )
74
- . trigger ( "input " ) ;
74
+ . trigger ( "blur " ) ;
75
75
break ;
76
76
default :
77
77
alert ( "error" ) ;
You can’t perform that action at this time.
0 commit comments