Skip to content

Commit

Permalink
fix(VAlert): improve alert accessibility (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano authored Mar 27, 2023
1 parent d03f014 commit 89f8001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/alert/src/VAlert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const mappedIcons: Record<string, string> = {

<template>
<transition :name="transition">
<div v-if="isOpen" class="alert" :class="classes">
<div v-if="isOpen" class="alert" role="alert" :class="classes">
<slot name="icon" :icon="icon">
<Icon
v-if="icon"
Expand Down

0 comments on commit 89f8001

Please sign in to comment.