Skip to content

Commit 09c5575

Browse files
committed
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 <[email protected]>
1 parent d60f455 commit 09c5575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/widgets/DetailsInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default {
8888
return {
8989
columns: [
9090
{ title: this.$t('label.key'), dataIndex: 'key', key: 'key', width: '40%' },
91-
{ title: this.$t('label.value'), dataIndex: 'value', key: 'value', width: '40%' },
91+
{ title: this.$t('label.value'), dataIndex: 'value', key: 'value', width: '40%', ellipsis: true },
9292
{ title: this.$t('label.actions'), key: 'actions', width: '20%' }
9393
],
9494
newKey: '',

0 commit comments

Comments
 (0)