Skip to content

Commit 085f7d1

Browse files
committed
fix:メッセージ表示ボタンを削除
1 parent bc1411f commit 085f7d1

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

src/components/Main/MainView/QallView/QallMessageView.vue

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import useChannelMessageFetcher from '../ChannelView/ChannelViewContent/composab
88
import { useChannelsStore } from '/@/store/entities/channels'
99
import MessageElement from '/@/components/Main/MainView/MessageElement/MessageElement.vue'
1010
import { useSubscriptionStore } from '/@/store/domain/subscription'
11-
import FormButton from '/@/components/UI/FormButton.vue'
1211
1312
const props = defineProps<{
1413
channelId: ChannelId
@@ -111,22 +110,6 @@ defineExpose({
111110
</template>
112111
</messages-scroller>
113112
</transition>
114-
<div :class="$style.uiElement">
115-
<FormButton
116-
label="メッセージを表示"
117-
@click="
118-
() => {
119-
if (isMessageShow) {
120-
isMessageShow = false
121-
toNewMessage('smooth')
122-
} else {
123-
isMessageShow = true
124-
nextTick(() => toNewMessage())
125-
}
126-
}
127-
"
128-
/>
129-
</div>
130113
</div>
131114
<slot name="default"></slot>
132115
</div>

0 commit comments

Comments
 (0)