Skip to content

Commit

Permalink
Improved: route number on UI
Browse files Browse the repository at this point in the history
  • Loading branch information
ymaheshwari1 committed Jan 19, 2024
1 parent aca5732 commit baa8658
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/BrokeringRoute.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
</ion-button>
</ion-list-header>
<ion-reorder-group @ionItemReorder="doReorder($event)" :disabled="false">
<ion-card v-for="routing in routingsForReorder" :key="routing.orderRoutingId" @click="redirect(routing.orderRoutingId)">
<ion-card v-for="(routing, index) in routingsForReorder" :key="routing.orderRoutingId" @click="redirect(routing.orderRoutingId)">
<ion-item lines="full">
<ion-label>
<h1>{{ routing.routingName }}</h1>
</ion-label>
<ion-chip outline>
<ion-label>{{ `${routing.sequenceNum}/4` }}</ion-label>
<ion-label>{{ `${index}/4` }}</ion-label>
<ion-reorder></ion-reorder>
</ion-chip>
</ion-item>
Expand Down

0 comments on commit baa8658

Please sign in to comment.