|
@ -11,28 +11,16 @@ |
|
|
name: 'container', |
|
|
name: 'container', |
|
|
label: $t('webContainer'), |
|
|
label: $t('webContainer'), |
|
|
sortable: false, |
|
|
sortable: false, |
|
|
format: (containers) => { |
|
|
format: Formater.join('<br/>'), |
|
|
containers = containers || []; |
|
|
title: Formater.join('\n'), |
|
|
let result = ''; |
|
|
|
|
|
for (const container of containers) { |
|
|
|
|
|
result += container + '<br/>'; |
|
|
|
|
|
} |
|
|
|
|
|
return result; |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
width: 300, |
|
|
width: 300, |
|
|
name: 'jar', |
|
|
name: 'jar', |
|
|
label: $t('jar'), |
|
|
label: $t('jar'), |
|
|
sortable: false, |
|
|
sortable: false, |
|
|
format: (jars) => { |
|
|
format: Formater.join('<br/>'), |
|
|
jars = jars || []; |
|
|
title: Formater.join('\n'), |
|
|
let result = ''; |
|
|
|
|
|
for (const jar of jars) { |
|
|
|
|
|
result += jar + '<br/>'; |
|
|
|
|
|
} |
|
|
|
|
|
return result; |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false }, |
|
|
{ width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false }, |
|
|
]" |
|
|
]" |
|
@ -40,5 +28,5 @@ |
|
|
</template> |
|
|
</template> |
|
|
<script setup lang="ts"> |
|
|
<script setup lang="ts"> |
|
|
import 'tailwindcss/utilities.css'; |
|
|
import 'tailwindcss/utilities.css'; |
|
|
import { Environment } from 'platform-core'; |
|
|
import { Environment, Formater } from 'platform-core'; |
|
|
</script> |
|
|
</script> |
|
|