Skip to content

Commit

Permalink
bug: Fix cannot copy text content from sidebar (#3506)
Browse files Browse the repository at this point in the history
* bug: Fixes cannot copy text content from sidebar .

* fixes cannot copy issue in sidebar

Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
  • Loading branch information
iamsivin and muhsin-k committed Dec 6, 2021
1 parent b46ee5e commit a98f101
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
@@ -1,6 +1,6 @@
<template>
<div class="cw-accordion">
<button class="cw-accordion--title" @click="$emit('click')">
<button class="cw-accordion--title drag-handle" @click="$emit('click')">
<div class="cw-accordion--title-wrap">
<emoji-or-icon class="icon-or-emoji" :icon="icon" :emoji="emoji" />
<h5>
Expand Down Expand Up @@ -69,7 +69,7 @@ export default {
background: var(--s-50);
border-bottom: 1px solid var(--s-100);
border-top: 1px solid var(--s-100);
cursor: pointer;
cursor: grab;
display: flex;
justify-content: space-between;
margin: 0;
Expand Down
Expand Up @@ -11,6 +11,7 @@
:disabled="!dragEnabled"
class="list-group"
ghost-class="ghost"
handle=".drag-handle"
@start="dragging = true"
@end="onDragEnd"
>
Expand Down

0 comments on commit a98f101

Please sign in to comment.