polaris-console icon indicating copy to clipboard operation
polaris-console copied to clipboard

Console for Polaris

Results 13 polaris-console issues
Sort by recently updated
recently updated
newest added

之前统计的是总量,会一直增加,数据会越变越大,但是业务可能更关心的是实例请求变化的频率,总量在不断的请求下会越来越大没有意义,数字展示也不正常 ![image](https://github.com/polarismesh/polaris-console/assets/66229105/d38f117a-684c-4278-8cc1-3c73d8af675f)

- 控制台可以有中英文切换按钮,根据按钮,页面的文案自动切换为相关英文信息

### codemod using `jscodeshift` ```ts const CHINESE_REGEXP = /[\u4E00-\u9FFF\u3400-\u4DBF\uF900-\uFAFF\U00020000-U0002EBEF]+/ function isContainChinese(word) { if (/^[\u0000-\u007F();:]+$/.test(word)) return false return CHINESE_REGEXP.test(word) } import { FileInfo, API, ASTPath, JSCodeshift } from 'jscodeshift' export default...

enhancement