Skip to content

Commit

Permalink
feat: Remove copyToClipboard and shareURL
Browse files Browse the repository at this point in the history
  • Loading branch information
kgilpin committed Jan 10, 2024
1 parent f0f8505 commit b6d2647
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions packages/components/src/pages/VsCodeExtension.vue
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,6 @@ export default {
eventFilterText: '',
eventFilterMatchIndex: 0,
showStatsPanel: false,
shareURL: undefined,
seqDiagramTimeoutId: undefined,
seqDiagramCollapseDepth: DEFAULT_SEQ_DIAGRAM_COLLAPSE_DEPTH,
maxSeqDiagramCollapseDepth: 9,
Expand Down Expand Up @@ -792,10 +791,6 @@ export default {
})
);
},
shareURLmessage() {
if (this.shareURL) return this.shareURL;
return 'Retrieving link...';
},
hasStats() {
return this.stats && this.stats.functions && this.stats.functions.length > 0;
},
Expand Down Expand Up @@ -1095,12 +1090,6 @@ export default {
}, {})
);
},
setShareURL(url) {
this.shareURL = url;
},
copyToClipboard(input) {
this.$root.$emit('copyToClipboard', input);
},
onFlamegraphSelect(event) {
if (event) {
this.onClickTraceEvent(event);
Expand Down

0 comments on commit b6d2647

Please sign in to comment.