Skip to content

Commit

Permalink
fix: prevent undefined reference error
Browse files Browse the repository at this point in the history
  • Loading branch information
albanm committed Sep 23, 2020
1 parent a14196e commit 84c1958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ParametersTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<md-checkbox v-model="selectedEntry.requestBody.required" disabled></md-checkbox>
</md-table-cell>
<md-table-cell>
<md-icon class="md-accent" v-if="examples(selectedEntry.requestBody.content[selectedEntry.requestBody.selectedType])" @click.native="openExamplesDialog(examples(selectedEntry.requestBody.content[selectedEntry.requestBody.selectedType]))" style="cursor:pointer">open_in_new</md-icon>
<md-icon class="md-accent" v-if="selectedEntry.requestBody.content && examples(selectedEntry.requestBody.content[selectedEntry.requestBody.selectedType])" @click.native="openExamplesDialog(examples(selectedEntry.requestBody.content[selectedEntry.requestBody.selectedType]))" style="cursor:pointer">open_in_new</md-icon>
</md-table-cell>
</md-table-row>

Expand Down

0 comments on commit 84c1958

Please sign in to comment.