Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ function dispatchAction(action: DevframeMessageAction) {
<div
v-for="toast of toasts"
:key="toast.id"
class="bg-glass:80 border color-base border-base shadow-xl cursor-pointer hover:bg-active transition-colors rounded"
class="bg-glass:80 border color-base border-base shadow-xl cursor-pointer transition-colors rounded"
@click="openMessages(toast.id)"
>
<MessageItem :entry="toast.entry" compact class="px-3 py-2.5">
<MessageItem :entry="toast.entry" compact class="px-3 py-2.5 hover:bg-active">
Comment thread
dvcolomban marked this conversation as resolved.
Outdated
<template #actions>
<button
v-for="action of toast.entry.actions"
Expand Down
Loading