Skip to content

Commit

Permalink
fix: widget title and tips (#394)
Browse files Browse the repository at this point in the history
Fine0830 authored May 11, 2024
1 parent e4b2203 commit 9001a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/dashboard/Widget.vue
Original file line number Diff line number Diff line change
@@ -15,9 +15,9 @@ limitations under the License. -->
<template>
<div class="content">
<div class="header">
<span>{{ decodeURIComponent(title) }}</span>
<span>{{ title }}</span>
<div class="tips" v-show="tips">
<el-tooltip :content="decodeURIComponent(tips) || ''">
<el-tooltip :content="tips || ''">
<span>
<Icon iconName="info_outline" size="sm" />
</span>

0 comments on commit 9001a96

Please sign in to comment.