diff --git a/src/app.js b/src/app.js index 1618448..d8f60b1 100644 --- a/src/app.js +++ b/src/app.js @@ -27,6 +27,13 @@ import { isValidURL } from '@/utils/utils' import { sendAddToQueue } from '@/utils/downloads' import { SPOTIFY_STATUS } from '@/constants' +/* ===== Random utils ===== */ + +/* eslint-disable no-extend-native */ +String.prototype.capitalize = function () { + return this.charAt(0).toUpperCase() + this.slice(1) +} + /* ===== App initialization ===== */ async function startApp() { new Vue({ diff --git a/src/components/pages/LinkAnalyzer.vue b/src/components/pages/LinkAnalyzer.vue index 2bc2522..b707c90 100644 --- a/src/components/pages/LinkAnalyzer.vue +++ b/src/components/pages/LinkAnalyzer.vue @@ -118,12 +118,24 @@
{{ country[0] }} - {{ country[1] }}
+ + +