Skip to content

Commit

Permalink
Minor fixes to alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
satterly committed Mar 23, 2019
1 parent 844fdc3 commit aa91dab
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/components/UserList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
slot-scope="props"
>
<td>{{ props.item.name }}</td>
<td>
<td class="text-xs-center">
<v-tooltip top>
<v-icon
slot="activator"
Expand All @@ -231,7 +231,7 @@
</v-tooltip>
</td>
<td>{{ props.item.email }}</td>
<td>
<td class="text-xs-center">
<v-tooltip top>
<v-icon
slot="activator"
Expand Down
8 changes: 6 additions & 2 deletions src/components/reports/TopFlapping.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
slot-scope="props"
>
<td>{{ props.item.event }}</td>
<td>{{ props.item.count }}</td>
<td>{{ props.item.duplicateCount }}</td>
<td class="text-xs-center">
{{ props.item.count }}
</td>
<td class="text-xs-center">
{{ props.item.duplicateCount }}
</td>
<td>{{ props.item.environments.join(', ') }}</td>
<td>{{ props.item.services.join(', ') }}</td>
<td>
Expand Down
8 changes: 6 additions & 2 deletions src/components/reports/TopOffenders.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
slot-scope="props"
>
<td>{{ props.item.event }}</td>
<td>{{ props.item.count }}</td>
<td>{{ props.item.duplicateCount }}</td>
<td class="text-xs-center">
{{ props.item.count }}
</td>
<td class="text-xs-center">
{{ props.item.duplicateCount }}
</td>
<td>{{ props.item.environments.join(', ') }}</td>
<td>{{ props.item.services.join(', ') }}</td>
<td>
Expand Down
8 changes: 6 additions & 2 deletions src/components/reports/TopStanding.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
slot-scope="props"
>
<td>{{ props.item.event }}</td>
<td>{{ props.item.count }}</td>
<td>{{ props.item.duplicateCount }}</td>
<td class="text-xs-center">
{{ props.item.count }}
</td>
<td class="text-xs-center">
{{ props.item.duplicateCount }}
</td>
<td>{{ props.item.environments.join(', ') }}</td>
<td>{{ props.item.services.join(', ') }}</td>
<td>
Expand Down
3 changes: 0 additions & 3 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@
Please sign up or log in to continue.
</p>
</v-flex>
<v-flex>
<p>{{ $config }}</p>
</v-flex>
<v-flex
xs12
sm6
Expand Down

0 comments on commit aa91dab

Please sign in to comment.