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

Commit

Permalink
fix if test
Browse files Browse the repository at this point in the history
  • Loading branch information
David Garcia committed Feb 7, 2020
1 parent f442221 commit 9f2985d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 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.length > 0">
<v-flex v-if="resource.results.act">
<v-card>
<v-card-title primary-title>
<span class="subheading">Active (forward) DNS</span>
Expand All @@ -78,7 +78,7 @@
:key="index"
>
<v-flex>
<v-label>o:</v-label>
<v-label>domain:</v-label>
{{ entry.o }}
</v-flex>
<v-flex>
Expand All @@ -89,7 +89,7 @@
</v-card>
</v-flex>

<v-flex v-if="resource.results.acth.length > 0">
<v-flex v-if="resource.results.acth">
<v-card>
<v-card-title primary-title>
<span class="subheading">Active DNS history</span>
Expand All @@ -101,7 +101,7 @@
:key="index"
>
<v-flex>
<v-label>o:</v-label>
<v-label>domain:</v-label>
{{ entry.o }}
</v-flex>
<v-flex>
Expand All @@ -112,7 +112,7 @@
</v-card>
</v-flex>

<v-flex v-if="resource.results.pas.length > 0">
<v-flex v-if="resource.results.pas">
<v-card>
<v-card-title primary-title>
<span class="subheading">Pasive DNS</span>
Expand All @@ -124,7 +124,7 @@
:key="index"
>
<v-flex>
<v-label>o:</v-label>
<v-label>domain:</v-label>
{{ entry.o }}
</v-flex>
<v-flex>
Expand All @@ -135,7 +135,7 @@
</v-card>
</v-flex>

<v-flex v-if="resource.results.pash.length > 0">
<v-flex v-if="resource.results.pash">
<v-card>
<v-card-title primary-title>
<span class="subheading">Pasive DNS history</span>
Expand All @@ -147,7 +147,7 @@
:key="index"
>
<v-flex>
<v-label>o:</v-label>
<v-label>domain:</v-label>
{{ entry.o }}
</v-flex>
<v-flex>
Expand Down

0 comments on commit 9f2985d

Please sign in to comment.