mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-24 17:30:03 +00:00
Fix undefined number presenter (#2787)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
parent
48d32b1841
commit
889c4a3db3
@ -14,7 +14,7 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
-->
|
-->
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export let value: number
|
export let value: number | undefined
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<span>{value}</span>
|
<span>{value ? value : ''}</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user