File tree 2 files changed +5
-11
lines changed
2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 38
38
</template >
39
39
40
40
<script >
41
- import GuideSection from ' ../../GuideSection' ;
42
41
import GuideStepBlock from ' ../../GuideStepBlock' ;
43
42
import GuideHeader from ' ../../GuidePageHeader' ;
44
43
import TokenBlock from ' ../../../project/TokenBlock' ;
45
- import CodeBlock from ' ../../../utils/CodeBlock' ;
46
- import UiButton from ' ../../../utils/UiButton' ;
47
44
import { getSentryDSN } from ' ../../../../utils' ;
48
45
49
46
export default {
@@ -52,9 +49,6 @@ export default {
52
49
GuideStepBlock,
53
50
GuideHeader,
54
51
TokenBlock,
55
- CodeBlock,
56
- GuideSection,
57
- UiButton,
58
52
},
59
53
data () {
60
54
return {
Original file line number Diff line number Diff line change @@ -63,6 +63,11 @@ export default Vue.extend({
63
63
required: true ,
64
64
},
65
65
},
66
+ computed: {
67
+ sentryDSN(): string {
68
+ return getSentryDSN (this .project .token );
69
+ },
70
+ },
66
71
methods: {
67
72
/**
68
73
* Revokes integration token with confirmation
@@ -87,11 +92,6 @@ export default Vue.extend({
87
92
});
88
93
},
89
94
},
90
- computed: {
91
- sentryDSN(): string {
92
- return getSentryDSN (this .project .token );
93
- },
94
- },
95
95
});
96
96
</script >
97
97
You can’t perform that action at this time.
0 commit comments