Skip to content

Commit

Permalink
Merge pull request #47 from SJVAir/fix/empty-anchors
Browse files Browse the repository at this point in the history
Fix: Empty Anchors
  • Loading branch information
alexandermccormick authored Mar 6, 2024
2 parents 44af3f9 + a7361bc commit c0d88eb
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 70 deletions.
128 changes: 64 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"files": [
"dist"
],
"version": "1.9.0",
"version": "1.9.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -17,7 +17,7 @@
"@types/d3": "^7.4.3",
"@types/leaflet": "^1.9.8",
"@types/leaflet.markercluster": "^1.5.4",
"@types/node": "20.11.24",
"@types/node": "20.11.25",
"@vitejs/plugin-vue": "^5.0.4",
"@vuepic/vue-datepicker": "^8.2.0",
"axios": "^1.6.7",
Expand All @@ -29,13 +29,13 @@
"leaflet-svg-shape-markers": "^1.4.0",
"leaflet.markercluster": "^1.5.3",
"sass": "^1.71.1",
"terser": "^5.28.1",
"typescript": "^5.3.3",
"terser": "^5.29.1",
"typescript": "^5.4.2",
"uplot": "^1.6.30",
"vite": "^5.1.5",
"vite-plugin-purgecss": "^0.2.12",
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"vue-tsc": "^2.0.4"
"vue-tsc": "^2.0.5"
}
}
3 changes: 2 additions & 1 deletion src/MonitorDetails/MonitorDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
<h3 class="has-text-weight-semibold">Data Provided Courtesy Of:</h3>
<ul>
<li v-for="provider of activeMonitor.data.data_providers">
<a :href="provider.url" target="_blank">{{ provider.name }}</a>
<a v-if="provider.url" :href="provider.url" target="_blank">{{ provider.name }}</a>
<span v-else>{{ provider.name }}</span>
</li>
</ul>
</div>
Expand Down

0 comments on commit c0d88eb

Please sign in to comment.