mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-16 17:10:53 +08:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
3452521ec5
@ -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
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
|
||||||
### 修復缺陷
|
### 修復缺陷
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
|
||||||
### 修复缺陷
|
### 修复缺陷
|
||||||
|
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user