Merge pull request #12030 from dataease/pr@dev-v2@fix_url_filter_type

fix(图表): URL 字段类型应该使用字符类型的过滤操作
This commit is contained in:
wisonic-s 2024-09-04 21:27:11 +08:00 committed by GitHub
commit 774a8f3aeb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ const operators = computed(() => {
if (authTargetType.value === 'sysParams') {
return textOptionsForSysParams
}
if ([0, 5].includes(deType)) {
if ([0, 5, 7].includes(deType)) {
return textOptions
} else if (deType === 1) {
return dateOptions

View File

@ -740,7 +740,7 @@ const tablePageClass = computed(() => {
justify-content: center;
}
.antv-s2-tooltip-container {
max-width: 80px;
max-width: 400px;
min-width: 80px;
}
</style>