File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/views/manage/components Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -193,6 +193,7 @@ const indexTable = computed(() => {
193
193
dataIndex: ' aliases' ,
194
194
key: ' aliases' ,
195
195
resizable: true ,
196
+ ellipsis: { tooltip: true },
196
197
render : ({ aliases }: { aliases: Array <ClusterAlias > }) =>
197
198
aliases .map (alias =>
198
199
h (
@@ -201,8 +202,8 @@ const indexTable = computed(() => {
201
202
strong: true ,
202
203
type: ' default' ,
203
204
tertiary: true ,
204
- iconPlacement : ' right ' ,
205
- style : ' margin-right: 8px ' ,
205
+ size : ' small ' ,
206
+ iconPlacement : ' left ' ,
206
207
},
207
208
{
208
209
default : () => ` ${alias .alias } ` ,
@@ -323,13 +324,15 @@ const templateTable = computed(() => {
323
324
title: ' Index Patterns' ,
324
325
dataIndex: ' index_patterns' ,
325
326
key: ' index_patterns' ,
327
+ ellipsis: { tooltip: true },
326
328
render : ({ index_patterns }: { index_patterns: Array <string > }) =>
327
329
index_patterns ?.map (pattern => h (NTag , null , { default : () => pattern })),
328
330
},
329
331
{
330
332
title: ' Composed Of' ,
331
333
dataIndex: ' composed_of' ,
332
334
key: ' composed_of' ,
335
+ ellipsis: { tooltip: true },
333
336
render : ({ composed_of }: { composed_of: Array <string > }) =>
334
337
composed_of ?.map (composed => h (NTag , null , { default : () => composed })),
335
338
},
You can’t perform that action at this time.
0 commit comments