Skip to content

Commit

Permalink
fix: add uniqe id to symbole overview
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan-shv committed Jan 31, 2023
1 parent 8f343f1 commit 31a6dd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SymbolOverview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default defineComponent({
if (scriptExists()) return
const script = document.createElement('script')
script.id = scriptID.value
script.id = scriptID.value + Date.now().toString(36)
script.type = 'text/javascript'
script.async = true
script.src = 'https://s3.tradingview.com/tv.js'
Expand Down

0 comments on commit 31a6dd2

Please sign in to comment.