Compare commits

...

2 Commits

Author SHA1 Message Date
caiyiling 65b81fc633 Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing Details
2025-02-17 10:15:49 +08:00
caiyiling 3a1d4ee15d 阅片任务中反馈状态修复 2025-02-17 10:15:19 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ export default {
var digitPlaces = Number(localStorage.getItem('digitPlaces'))
this.digitPlaces = digitPlaces === -1 ? this.digitPlaces : digitPlaces
this.criterionType = parseInt(localStorage.getItem('CriterionType'))
this.isExistUnprocessedFeedback = localStorage.getItem('IsExistUnprocessedFeedback')
this.isExistUnprocessedFeedback = localStorage.getItem('IsExistUnprocessedFeedback') !== 'false'
DicomEvent.$on('setReadingState', readingTaskState => {
this.readingTaskState = readingTaskState
})