Skip to content

Commit

Permalink
feat: enable subscript/superscript in text of status bar (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
YT8434 authored Oct 23, 2024
1 parent 6a03046 commit ed15ed7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/Status/StatusBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
:key="item.id">
<div class="flex items-center p-3 flex-1" @click="$emit('click', item.id)">
<component :is="item.icon" class="flex-none mr-2" :style="{ width: 24, height: 24 }"/>
<div>
{{ item.text }}
</div>
<div v-html="item.text"></div>
</div>
<button class="ml-8 uppercase p-3" @click="$emit('dismiss', i)">
<CIcon type="times" size="sm"/>
Expand Down

0 comments on commit ed15ed7

Please sign in to comment.