File tree Expand file tree Collapse file tree
src/main/malewicz/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5252 <tr >
5353 <th scope =" row" >#</th >
5454 <th v-for =" met in defaultMeta" data-toggle =" tooltip" data-placement =" left"
55- v-bind:title =" met.properties.description" :key =" met.properties.key" v-on:click =" setSort(met.properties.key)" >{{met.properties.label}}
55+ v-bind:title =" met.properties.description" :key =" met.properties.key" v-on:click =" setSort(met.properties.key)" >{{met.properties.label || met.name }}
5656 </th >
5757 </tr >
5858 </thead >
@@ -132,7 +132,7 @@ export default {
132132 },
133133 computed: {
134134 defaultMeta : function () {
135- return this .meta .metadata .filter (function (v ) { return v .properties .visible })
135+ return this .meta .metadata .filter (function (v ) { return v .properties .visible || true })
136136 },
137137 count () {
138138 return this .$store .getters .preparedTypeUri
Original file line number Diff line number Diff line change 22 <div >
33 <div class =" list-group" >
44 <li class =" list-group-item list-group-item-primary" >Objects:</li >
5- <a v-for =" type in types"
6- class =" list-group-item"
5+ <span v-for =" type in types" data-toggle = " tooltip " data-placement = " left " v-bind:title = " type.properties.description " >
6+ < a class =" list-group-item"
77 v-bind:class =" { active: isActive(type) }"
88 id =" v-pills-home-tab" data-toggle =" pill" href =" #v-pills-home" role =" tab"
99 aria-controls =" v-pills-home" aria-selected =" true"
1010 v-on:click =" setType(type.name)"
1111 ><i class =" fa fa-table fa-fw" aria-hidden =" true" ></i >  ; {{ type.properties.title || type.name }}</a >
12+ </span >
1213 </div >
1314 </div >
1415</template >
You can’t perform that action at this time.
0 commit comments