diff options
Diffstat (limited to 'web/static/app/templates/property.html')
-rw-r--r-- | web/static/app/templates/property.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/web/static/app/templates/property.html b/web/static/app/templates/property.html index cd003ca..5e8199d 100644 --- a/web/static/app/templates/property.html +++ b/web/static/app/templates/property.html @@ -33,7 +33,14 @@ <th>Value</th> </tr> </thead> - <tbody> + <tbody ng-if="ctrl.values.length == 0"> + <tr> + <td> + No values registered + </td> + </tr> + </tbody> + <tbody ng-if="ctrl.values.length > 0"> <tr ng-repeat="v in ctrl.values"> <td><dl-timestamp value="v.timestamp"></dl-timestamp></td> <td>{{v.value}}</td> |