This commit is contained in:
Daniel 2023-10-12 19:58:32 +08:00
parent 1590913db7
commit 0ea9b8f5a7
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -209,7 +209,6 @@ func GetBlockAttributeViewKeys(blockID string) (ret []*BlockAttributeViewKeys) {
}
func RenderAttributeView(avID string) (viewable av.Viewable, attrView *av.AttributeView, err error) {
start := time.Now()
waitForSyncingStorages()
if avJSONPath := av.GetAttributeViewDataPath(avID); !gulu.File.IsExist(avJSONPath) {
@ -290,12 +289,6 @@ func RenderAttributeView(avID string) (viewable av.Viewable, attrView *av.Attrib
viewable.FilterRows()
viewable.SortRows()
viewable.CalcCols()
used := time.Since(start)
if minSleep := used.Milliseconds() - 256; 0 > minSleep {
// 补全加载时间到 256ms避免前端动画闪烁干扰视觉
time.Sleep(time.Duration(-minSleep) * time.Millisecond)
}
return
}