From f8b47161ca162556a323e462fd230fbf0eb172ad Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Wed, 1 Oct 2025 16:41:01 +0530 Subject: [PATCH] ui: fix overflow for value in DetailInput In DetailInput component when a long value is used, it overflows on some browsers. Signed-off-by: Abhishek Kumar --- ui/src/components/widgets/DetailsInput.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/components/widgets/DetailsInput.vue b/ui/src/components/widgets/DetailsInput.vue index eeab0e3d528c..a8d39fce02b6 100644 --- a/ui/src/components/widgets/DetailsInput.vue +++ b/ui/src/components/widgets/DetailsInput.vue @@ -87,8 +87,8 @@ export default { data () { return { columns: [ - { title: this.$t('label.key'), dataIndex: 'key', key: 'key', width: '40%' }, - { title: this.$t('label.value'), dataIndex: 'value', key: 'value', width: '40%' }, + { title: this.$t('label.key'), dataIndex: 'key', key: 'key', width: '40%', ellipsis: true }, + { title: this.$t('label.value'), dataIndex: 'value', key: 'value', width: '40%', ellipsis: true }, { title: this.$t('label.actions'), key: 'actions', width: '20%' } ], newKey: '',