Skip to content

Commit

Permalink
Show agent's restricted exe.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhsamuel committed Dec 29, 2023
1 parent 6c7d61b commit 73321b7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions vue/src/views/AgentsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ div
span {{ conn.info.proc.pid }}
label Connection ID
span {{ conn.info.conn.conn_id }}
label Restricted Exe
span
tt {{ conn.info.conn.restricted_exe }}
div.stats
template(v-for="(value, name) in conn.info.stats")
label(:class="{ bold: name === 'connected' }") {{ name }}
div(:class="{ bold: name === 'connected' }") {{ value }}
label {{ name.replaceAll('_', ' ') }}
div {{ value }}

</template>

Expand Down Expand Up @@ -167,17 +170,14 @@ groups {
label {
font-weight: bold;
}
.conn_id {
font-family: $base-code-font-family;
}
}
.stats {
font-family: $base-code-font-family;
font-size: 85%;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-columns: 28ex 1fr;
font-family: $base-code-font-family;
}
.bold {
Expand Down

0 comments on commit 73321b7

Please sign in to comment.