mirror of
https://github.com/tiny-craft/tiny-rdm.git
synced 2025-04-26 09:38:05 +08:00
fix: tooltips exceed the display area #112
This commit is contained in:
parent
bc66c63b3d
commit
927678ebbb
@ -60,10 +60,10 @@ const columns = computed(() => [
|
||||
ellipsis: {
|
||||
tooltip: {
|
||||
style: {
|
||||
maxWidth: '80vw',
|
||||
maxHeight: '60vh',
|
||||
overflowY: 'scroll',
|
||||
maxWidth: '50vw',
|
||||
maxHeight: '50vh',
|
||||
},
|
||||
scrollable: true,
|
||||
},
|
||||
},
|
||||
render: ({ client, addr }, index) => {
|
||||
|
@ -90,10 +90,10 @@ const fieldColumn = computed(() => ({
|
||||
ellipsis: {
|
||||
tooltip: {
|
||||
style: {
|
||||
maxWidth: '80vw',
|
||||
maxHeight: '60vh',
|
||||
overflowY: 'scroll',
|
||||
maxWidth: '50vw',
|
||||
maxHeight: '50vh',
|
||||
},
|
||||
scrollable: true,
|
||||
},
|
||||
lineClamp: 10,
|
||||
},
|
||||
@ -122,10 +122,10 @@ const valueColumn = computed(() => ({
|
||||
: {
|
||||
tooltip: {
|
||||
style: {
|
||||
maxWidth: '80vw',
|
||||
maxHeight: '60vh',
|
||||
overflowY: 'scroll',
|
||||
maxWidth: '50vw',
|
||||
maxHeight: '50vh',
|
||||
},
|
||||
scrollable: true,
|
||||
},
|
||||
},
|
||||
// filterOptionValue: valueFilterOption.value,
|
||||
|
@ -91,10 +91,10 @@ const valueColumn = computed(() => ({
|
||||
: {
|
||||
tooltip: {
|
||||
style: {
|
||||
maxWidth: '80vw',
|
||||
maxHeight: '60vh',
|
||||
overflowY: 'scroll',
|
||||
maxWidth: '50vw',
|
||||
maxHeight: '50vh',
|
||||
},
|
||||
scrollable: true,
|
||||
},
|
||||
},
|
||||
filterOptionValue: valueFilterOption.value,
|
||||
|
@ -90,10 +90,10 @@ const valueColumn = computed(() => ({
|
||||
: {
|
||||
tooltip: {
|
||||
style: {
|
||||
maxWidth: '80vw',
|
||||
maxHeight: '60vh',
|
||||
overflowY: 'scroll',
|
||||
maxWidth: '50vw',
|
||||
maxHeight: '50vh',
|
||||
},
|
||||
scrollable: true,
|
||||
},
|
||||
},
|
||||
filterOptionValue: valueFilterOption.value,
|
||||
|
@ -139,10 +139,10 @@ const valueColumn = computed(() => ({
|
||||
: {
|
||||
tooltip: {
|
||||
style: {
|
||||
maxWidth: '80vw',
|
||||
maxHeight: '60vh',
|
||||
overflowY: 'scroll',
|
||||
maxWidth: '50vw',
|
||||
maxHeight: '50vh',
|
||||
},
|
||||
scrollable: true,
|
||||
},
|
||||
},
|
||||
filterOptionValue: valueFilterOption.value,
|
||||
|
Loading…
x
Reference in New Issue
Block a user