== to ===

This commit is contained in:
2025-05-28 19:15:32 +08:00
parent ccfcc4f840
commit 34eec38036
16 changed files with 64 additions and 64 deletions

View File

@@ -11,7 +11,7 @@ export class DOBlock {
this.data = dataBlock
this.preset = preset
this.correct = correct
this.checked = preset || (dataBlock.show == correct)
this.checked = preset || (dataBlock.show === correct)
}
// ====================================持久化数据
@@ -25,7 +25,7 @@ export class DOBlock {
public set_show(show: number): void {
this.data.show = show
this.checked = show == this.get_correct()
this.checked = show === this.get_correct()
StorageManager.getInstance().onStageChanged()
}