Skip to content

Commit

Permalink
https://github.com/project-chip/zap/issues/311
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehradml authored and tecimovic committed Feb 3, 2022
1 parent 5a4783f commit 8a9fad3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/components/ZclAttributeManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,18 @@ limitations under the License.
>
<template v-slot:body="props">
<q-tr :props="props">
<q-td key="status" :props="props" class="q-px-none">
<q-td key="status" :props="props" class="q-px-none" style="max-width:30px;">
<q-icon
v-show="displayAttrWarning(props.row)"
name="warning"
class="text-amber"
style="font-size: 1.5rem"
/>
<q-popup-edit
<q-tooltip v-if="displayAttrWarning(props.row)" anchor="top middle" self="bottom middle" :offset="[10, 10]" >
This attribute is mandatory for the cluster and device type
configuration you have enabled
</q-tooltip>
<!-- <q-popup-edit
:disable="!displayAttrWarning(props.row)"
:cover="false"
:offset="[0, -54]"
Expand All @@ -69,7 +73,7 @@ limitations under the License.
</div>
</div>
</template>
</q-popup-edit>
</q-popup-edit> -->
</q-td>
<q-td key="included" :props="props" auto-width>
<q-toggle
Expand Down

0 comments on commit 8a9fad3

Please sign in to comment.