Skip to content

Commit

Permalink
v3.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jemu75 committed May 5, 2021
1 parent f575db6 commit fe848ca
Show file tree
Hide file tree
Showing 50 changed files with 1,078 additions and 969 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fhemapp",
"version": "3.16.1",
"version": "3.17.0",
"private": true,
"author": "jemu75",
"scripts": {
Expand Down
30 changes: 30 additions & 0 deletions src/components/Jsonlist.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
<template>
<div class="text-center">
<v-chip
v-if="item.Options.sortby != 'zzz'"
small
color="secondary"
>
<v-icon left>
mdi-sort-ascending
</v-icon>
{{ item.Options.sortby }}
</v-chip>

<v-btn
:href="toFhem()"
target="_blank"
small
icon
>
<v-icon small>
mdi-link
</v-icon>
</v-btn>


<v-dialog
v-model="dialog"
max-width="90%"
Expand Down Expand Up @@ -76,6 +99,13 @@
components: {
VueJsonPretty
},
methods: {
toFhem() {
let fhemLink = this.$fhem.createURL([{ param: 'detail', value: this.item.Name }]);
return fhemLink;
}
}
}
</script>
Expand Down
Loading

0 comments on commit fe848ca

Please sign in to comment.