Merge pull request #5462 from dataease/pr@dev@perf_number_range

perf(仪表板): 数字范围过滤器可用范围
This commit is contained in:
fit2cloud-chenyw 2023-06-15 16:29:05 +08:00 committed by GitHub
commit 08472778e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,8 +41,8 @@
</template>
<script>
const MIN_NUMBER = -2147483648
const MAX_NUMBER = 2147483647
const MIN_NUMBER = Number.MIN_SAFE_INTEGER
const MAX_NUMBER = Number.MAX_SAFE_INTEGER
import bus from '@/utils/bus'
export default {