Skip to content

Commit 9e68366

Browse files
committed
Fix list pane UI consitency for 'Aborted' transactions.
1 parent d331562 commit 9e68366

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/components/har/CommunicationListEntry.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,18 @@ export default {
7979
<span class="pi pi-code" ></span>
8080
<span class="mx-1 text-sm">local script</span>
8181
</div>
82+
<div class="p-1 text-unmuted font-monospace" v-else-if="isAborted">
83+
<span class="pi pi-server" ></span>
84+
<span class="mx-1 text-sm">Unavailable</span>
85+
</div>
8286
<div class="p-1 text-unmuted font-monospace" v-else-if="entry.serverIPAddress">
8387
<span class="pi pi-server" ></span>
8488
<span class="mx-1 text-sm">{{ entry.serverIPAddress }}</span>
8589
</div>
90+
<div class="p-1 text-unmuted font-monospace" v-else>
91+
<span class="pi pi-exclamation-circle" ></span>
92+
<span class="mx-1 text-sm">Unsupported source</span>
93+
</div>
8694
</div>
8795
</div>
8896
</template>

0 commit comments

Comments
 (0)