Skip to content

Commit

Permalink
0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
GodDown1V4 committed Apr 28, 2022
1 parent 980340a commit c32559e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
17 changes: 8 additions & 9 deletions data.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,6 @@
"sort": null,
"sortIndex": null
},
{
"colId": "Property",
"field": "Property",
"headerName": "Property",
"type": "createdTime",
"width": 200,
"sort": null,
"sortIndex": null
},
{
"colId": "官方网站",
"field": "官方网站",
Expand Down Expand Up @@ -225,6 +216,14 @@
"sort": null,
"sortIndex": null,
"hide": true
},
{
"field": "Property",
"type": "checkbox",
"colId": "Property",
"width": 200,
"sort": null,
"sortIndex": null
}
],
"folder": "电影",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-yaml-database",
"name": "YAML Database",
"version": "0.8.2",
"version": "0.8.3",
"minAppVersion": "0.9.12",
"description": "Helps users manage subdocument YAML properties that are located under the same folder",
"author": "wd",
Expand Down
9 changes: 8 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,17 @@ return prop(tag)=="test"? true:false

# 版本更新日志

## 0.8.2
## 0.8.3

### 修复

- [x] 修复编辑列时新增列更改属性为复选框时出错的bug


## 0.8.2

### 增强

- [x] 增加对本地图片链接的支持(支持图片名、图片相对链接、图片基于库的链接)

## 0.8.1
Expand Down
3 changes: 1 addition & 2 deletions src/components/CustomCellRender.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,8 @@ export class TodoCellRender extends Component<Props, State> {

constructor(props: Props) {
super(props)
this.cellValue = this.props.value.trim()
this.state = {
cellValue: this.cellValue == "true" ? true : false,
cellValue: this.props.value == "true" ? true : false,
}
}

Expand Down

0 comments on commit c32559e

Please sign in to comment.