Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
fix robtex layout
Browse files Browse the repository at this point in the history
  • Loading branch information
David Garcia committed Feb 7, 2020
1 parent 9f2985d commit 7828204
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/components/templates/robtex/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</v-card>
</v-flex>

<v-flex v-if="resource.results.act">
<v-flex v-if="resource.results.act && resource.results.act.length > 0">
<v-card>
<v-card-title primary-title>
<span class="subheading">Active (forward) DNS</span>
Expand All @@ -89,7 +89,7 @@
</v-card>
</v-flex>

<v-flex v-if="resource.results.acth">
<v-flex v-if="resource.results.acth && resource.results.acth.length > 0">
<v-card>
<v-card-title primary-title>
<span class="subheading">Active DNS history</span>
Expand All @@ -112,7 +112,7 @@
</v-card>
</v-flex>

<v-flex v-if="resource.results.pas">
<v-flex v-if="resource.results.pas && resource.results.pas.length > 0">
<v-card>
<v-card-title primary-title>
<span class="subheading">Pasive DNS</span>
Expand All @@ -135,7 +135,7 @@
</v-card>
</v-flex>

<v-flex v-if="resource.results.pash">
<v-flex v-if="resource.results.pash && resource.results.pash.length > 0">
<v-card>
<v-card-title primary-title>
<span class="subheading">Pasive DNS history</span>
Expand Down

0 comments on commit 7828204

Please sign in to comment.