We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b689742 commit fa82795Copy full SHA for fa82795
1 file changed
components/singleDiff.vue
@@ -5,15 +5,11 @@
5
</p>
6
<div
7
:id="id"
8
- class="relative flex-1 px-4 py-2 border-2 rounded-md dark:border-gray-500 line-number-gutter min-h-80"
+ class="relative flex-1 px-4 py-2 border-2 rounded-md dark:border-gray-500 line-number-gutter min-h-80"
9
:class="{
10
'overflow-y-auto max-h-screen--nav': !isSrollInSyncEnabled,
11
}"
12
>
13
- <StickyCopy
14
- :aria-label="'Copy the content to clipboard'"
15
- :click-handler="copyTextToClipboard"
16
- />
17
18
v-for="(lineDiff, index) in diff"
19
:key="index"
@@ -30,10 +26,8 @@
30
26
31
27
<script lang="ts">
32
28
import Vue from 'vue'
33
-import StickyCopy from './buttons/stickyCopy.vue'
34
29
import { putToClipboard } from '~/helpers/utils'
35
export default Vue.extend({
36
- components: { StickyCopy },
37
props: {
38
diff: {
39
type: Array,
0 commit comments