Skip to content

Commit 1e0b384

Browse files
authored
fix: 修复DictTag组件渲染异常的问题 (#59)
* fix: 修复DictTag组件渲染异常的问题 * docs: 新增更新日志 * docs: 修复更新日志书写错误
1 parent b848236 commit 1e0b384

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
# 更新日志
22

3+
## 未发布
4+
5+
### 新增功能
6+
7+
1.新增E2E测试 (#57)。
8+
9+
### BUG修复
10+
11+
1.修复DictTag组件渲染异常的问题 (#59)。
12+
13+
### 代码优化
14+
15+
1.优化数据权限依赖 (#55)。
16+
2.动态导入定时任务函数,移除eval (#56)。
17+
318
## RuoYi-Vue3-FastAPI v1.8.0
419

520
### 项目依赖
621

7-
## 后端
22+
#### 后端
823

924
1.后端依赖升级到最新版本,请升级依赖或重新创建环境。
1025

ruoyi-fastapi-frontend/src/components/DictTag/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function handleArray(array) {
7676
}
7777
7878
function isValueMatch(itemValue) {
79-
return this.values.some(val => val == itemValue)
79+
return values.value.some(val => val == itemValue)
8080
}
8181
</script>
8282

0 commit comments

Comments
 (0)