Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa 2023-12-25 21:31:11 +08:00
commit 3452521ec5
4 changed files with 6 additions and 3 deletions

View File

@ -35,6 +35,7 @@ Below are the detailed changes in this version.
* [Adjust the width of recent documents](https://github.com/siyuan-note/siyuan/issues/9960) * [Adjust the width of recent documents](https://github.com/siyuan-note/siyuan/issues/9960)
* [Improve UI](https://github.com/siyuan-note/siyuan/issues/9963) * [Improve UI](https://github.com/siyuan-note/siyuan/issues/9963)
* [`Convert network assets to local` no longer process webpage](https://github.com/siyuan-note/siyuan/issues/9965) * [`Convert network assets to local` no longer process webpage](https://github.com/siyuan-note/siyuan/issues/9965)
* [Improve flashcard style](https://github.com/siyuan-note/siyuan/issues/9968)
### Bugfix ### Bugfix

View File

@ -33,6 +33,7 @@
* [調整最近文件寬度](https://github.com/siyuan-note/siyuan/issues/9960) * [調整最近文件寬度](https://github.com/siyuan-note/siyuan/issues/9960)
* [改進介面](https://github.com/siyuan-note/siyuan/issues/9963) * [改進介面](https://github.com/siyuan-note/siyuan/issues/9963)
* [`轉換網路檔案到本地` 不再處理網頁](https://github.com/siyuan-note/siyuan/issues/9965) * [`轉換網路檔案到本地` 不再處理網頁](https://github.com/siyuan-note/siyuan/issues/9965)
* [改良閃卡樣式](https://github.com/siyuan-note/siyuan/issues/9968)
### 修復缺陷 ### 修復缺陷

View File

@ -33,6 +33,7 @@
* [调整最近文档宽度](https://github.com/siyuan-note/siyuan/issues/9960) * [调整最近文档宽度](https://github.com/siyuan-note/siyuan/issues/9960)
* [改进界面](https://github.com/siyuan-note/siyuan/issues/9963) * [改进界面](https://github.com/siyuan-note/siyuan/issues/9963)
* [`转换网络文件到本地` 不再处理网页](https://github.com/siyuan-note/siyuan/issues/9965) * [`转换网络文件到本地` 不再处理网页](https://github.com/siyuan-note/siyuan/issues/9965)
* [改进闪卡样式](https://github.com/siyuan-note/siyuan/issues/9968)
### 修复缺陷 ### 修复缺陷

View File

@ -614,7 +614,7 @@ func (value *Value) CompareOperator(other *Value, operator FilterOperator) bool
contains := false contains := false
for _, c := range value.Relation.Contents { for _, c := range value.Relation.Contents {
for _, c1 := range other.Relation.Contents { for _, c1 := range other.Relation.Contents {
if c == c1 { if strings.Contains(c, c1) {
contains = true contains = true
break break
} }
@ -624,8 +624,8 @@ func (value *Value) CompareOperator(other *Value, operator FilterOperator) bool
case FilterOperatorDoesNotContain: case FilterOperatorDoesNotContain:
contains := false contains := false
for _, c := range value.Relation.Contents { for _, c := range value.Relation.Contents {
for _, c2 := range other.Relation.Contents { for _, c1 := range other.Relation.Contents {
if c == c2 { if strings.Contains(c, c1) {
contains = true contains = true
break break
} }