Skip to content

Commit

Permalink
UI optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
mdima committed Apr 11, 2024
1 parent 1b25909 commit 09cb780
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Based on the original repository: https://github.com/bencorn/traceroute

### Running in Docker
You can use the following image to run Visual Trace Route locally:
michele73/traceroute:latest
michele73/traceroute:1.1.0

Example:
docker run -d -p 8081:80 --name=traceroute --restart=always -v traecroute_logs:/app/logs michele73/traceroute:latest
docker run -d -p 8081:80 --name=traceroute --restart=always -v traecroute_logs:/app/logs michele73/traceroute:1.1.0

### Live Demo
You can view a live demo of the Trace Route application here: https://traceroute.di-maria.it/
6 changes: 3 additions & 3 deletions TraceRoute/Views/Home/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ViewData["Title"] = "Visual Trace Route";
<th>IP</th>
<th>Trip time</th>
<th>Location</th>
<th class="d-none d-xl-block">ISP</th>
<th class="d-none d-xl-table-cell">ISP</th>
</tr>
</thead>
<tbody>
Expand All @@ -31,10 +31,10 @@ ViewData["Title"] = "Visual Trace Route";
<span class="visually-hidden">Loading...</span>
</div>
</td>
<td ng-show="hop.details.isp != null" class="small tr_hop_{{$index + 1}}">
<td ng-hide="hop.details.isp == null" class="small tr_hop_{{$index + 1}}">
{{ hop.details.country }} - {{ hop.details.city }}
</td>
<td ng-show="hop.details.isp != null" class="small tr_hop_{{$index + 1}} d-none d-xl-block">
<td ng-hide="hop.details.isp == null" class="small tr_hop_{{$index + 1}} d-none d-xl-table-cell">
{{ hop.details.isp }}
</td>
</tr>
Expand Down

0 comments on commit 09cb780

Please sign in to comment.