mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: Resolve the issue of a function returning 0 as a result (#2389)
This commit is contained in:
parent
62ab02ec0e
commit
c6a3024807
|
|
@ -84,7 +84,7 @@
|
|||
shadow="never"
|
||||
style="max-height: 350px; overflow: scroll"
|
||||
>
|
||||
{{ result || '-' }}
|
||||
{{ String(result) == '0' ? 0 : result || '-' }}
|
||||
</el-card>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue