You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduces a reusable `MetadataLabel` component to streamline the display of message metadata in the message view.
This improves code readability and maintainability by encapsulating the common styling and tooltip logic for metadata labels. It also makes it easier to consistently apply styling across different metadata labels.
<spanv-if="state.data.failure_status.retried"v-tippy="`Message is being retried`"class="label sidebar-label label-info metadata-label">Retried</span>
75
-
<spanv-if="state.data.failure_status.restoring"v-tippy="`Message is being retried`"class="label sidebar-label label-info metadata-label">Restoring...</span>
76
-
<spanv-if="state.data.failure_status.archiving"v-tippy="`Message is being deleted`"class="label sidebar-label label-info metadata-label">Deleting...</span>
77
-
<spanv-if="state.data.failure_status.archived"v-tippy="`Message is deleted`"class="label sidebar-label label-warning metadata-label">Deleted</span>
78
-
<spanv-if="state.data.failure_status.resolved"v-tippy="`Message was processed successfully`"class="label sidebar-label label-warning metadata-label">Processed</span>
0 commit comments