Skip to content

Commit

Permalink
improve field description in dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
cviolbarbosa committed May 14, 2024
1 parent 22ea6ce commit 8f5cc6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ <h4>{{selectedItem.name}}</h4>
<div style="margin-left: 14px;"> Context data: </div>
<fieldset class="form-group col-xl-8">
<div class="checkbox">
<label> <input type="checkbox" [(ngModel)]="selectedItem.requireMapData" name="requireMapData" /> Include map data </label>
<label> <input type="checkbox" [(ngModel)]="selectedItem.requireMapData" name="requireMapData" /> Include yard and map objects data </label>
</div>

<div class="checkbox">
Expand Down
4 changes: 2 additions & 2 deletions helyos_dashboard/src/app/layout/yards/yards.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h1>Yards </h1>
<th>Lat</th>
<th>Lon</th>
<th>Alt</th>
<th>Map data</th>
<th>Map Info</th>
<th>Source</th>
</tr>
</thead>
Expand All @@ -40,7 +40,7 @@ <h1>Yards </h1>
<td>{{item.lat}}</td>
<td>{{item.lon}}</td>
<td>{{item.alt}}</td>
<td title="arbritrary JSON data">{{item.mapData}}</td>
<td title="Optional: JSON data. If you have extensive map data, consider using map objects.">{{item.mapData}}</td>
<td>{{item.source}}</td>
</tr>
</tbody>
Expand Down

0 comments on commit 8f5cc6c

Please sign in to comment.