Commit 08629878 authored by Yuan Zhixiang's avatar Yuan Zhixiang
Browse files

将'<UNALLOCATED>'也显示为'?'

parent 654db460
......@@ -61,7 +61,7 @@ const display_content = computed(() => {
return v
}
}
return v != '<UNINITIALIZED>' ? v : '?'
return v != '<UNINITIALIZED>' && v != '<UNALLOCATED>' ? v : '?'
}
return 'error'
})
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment