Skip to content

Commit

Permalink
Extend thing template block
Browse files Browse the repository at this point in the history
  • Loading branch information
mcicolella committed Nov 7, 2020
1 parent 942e9d5 commit cd80683
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/components/dialog/AddThingDialog.vue
Expand Up @@ -8,10 +8,19 @@
<q-list bordered>
<q-item clickable v-ripple v-for="template in getThingTemplatesList" :key="template.name">
<q-item-section avatar>
<q-icon color="primary" name="bluetooth" />
<q-avatar color="primary" text-color="white">
I
</q-avatar>
</q-item-section>

<q-item-section>{{template.name}}</q-item-section>
<q-item-section>
<q-item-label>{{ template.name }}</q-item-label>
<q-item-label caption lines="1">{{ template.description }}</q-item-label>
</q-item-section>

<q-item-section side>
<q-icon name="add" color="green" />
</q-item-section>
</q-item>

</q-list>
Expand Down

0 comments on commit cd80683

Please sign in to comment.