Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
yuta-ike committed Jan 18, 2022
1 parent 93874eb commit 4f740df
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions app/front/assets/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,6 @@
.list-complete-item {
transition: all 0.3s;
transform: translateX(0);
&.disable-scroll-transition {
transition: transform 0s !important;
}
}
.list-complete-enter,
.list-complete-leave-to {
Expand Down
3 changes: 0 additions & 3 deletions app/front/components/ChatRoom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
v-for="message in chatItems"
:key="message.id"
class="list-complete-item"
:class="{ 'disable-scroll-transition': disableScrollTransition }"
>
<MessageComponent
v-if="
Expand Down Expand Up @@ -99,7 +98,6 @@ type DataType = {
selectedChatItem: ChatItemModel | null
showGraph: boolean
isAllCommentShowed: boolean
disableScrollTransition: boolean
}
export default Vue.extend({
Expand Down Expand Up @@ -134,7 +132,6 @@ export default Vue.extend({
selectedChatItem: null,
showGraph: false,
isAllCommentShowed: true,
disableScrollTransition: false,
}
},
computed: {
Expand Down

0 comments on commit 4f740df

Please sign in to comment.