Merge branch 'v4' of github.com:jumpserver/lina into v4

This commit is contained in:
ibuler
2024-02-28 17:05:30 +08:00
2 changed files with 2 additions and 1 deletions

View File

@@ -424,6 +424,7 @@ export function toTitleCase(string) {
export function toSentenceCase(string) { export function toSentenceCase(string) {
if (!string) return string if (!string) return string
if (string.indexOf('/') > 0) return string
const s = string.trim().split(' ').map(item => { const s = string.trim().split(' ').map(item => {
if (item.length === 0) return '' if (item.length === 0) return ''
if (item.length === 1) return item.toLowerCase() if (item.length === 1) return item.toLowerCase()

View File

@@ -96,7 +96,7 @@ export default {
} }
}, },
user_groups_amount: { user_groups_amount: {
width: 90, width: 100,
formatter: AmountFormatter, formatter: AmountFormatter,
formatterArgs: { formatterArgs: {
async: true, async: true,