Skip to content

Commit

Permalink
fix: fix overlay issue in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
ninoseki committed Aug 25, 2020
1 parent 4b76a3e commit 22dfcf3
Showing 1 changed file with 25 additions and 23 deletions.
48 changes: 25 additions & 23 deletions frontend/src/components/attachments/Attachment.vue
@@ -1,5 +1,5 @@
<template>
<div class="table-container">
<div>
<nav class="navbar">
<div class="navbar-brand">
<h3 class="is-size-5 has-text-weight-bold">
Expand All @@ -12,28 +12,30 @@
</div>
</div>
</nav>
<table class="table is-fullwidth">
<tbody>
<tr>
<th>Filename</th>
<td>{{ attachment.filename }}</td>
</tr>
<tr>
<th>Size</th>
<td>{{ filesize }}</td>
</tr>
<tr>
<th>MIME type</th>
<td>{{ attachment.mimeType || "N/A" }}</td>
</tr>
<tr>
<th>Hash</th>
<td>
<Indicators v-bind:type="sha256Type" v-bind:values="values" />
</td>
</tr>
</tbody>
</table>
<div class="table-container">
<table class="table is-fullwidth">
<tbody>
<tr>
<th>Filename</th>
<td>{{ attachment.filename }}</td>
</tr>
<tr>
<th>Size</th>
<td>{{ filesize }}</td>
</tr>
<tr>
<th>MIME type</th>
<td>{{ attachment.mimeType || "N/A" }}</td>
</tr>
<tr>
<th>Hash</th>
<td>
<Indicators v-bind:type="sha256Type" v-bind:values="values" />
</td>
</tr>
</tbody>
</table>
</div>
</div>
</template>

Expand Down

0 comments on commit 22dfcf3

Please sign in to comment.