mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-03 12:48:46 +08:00
[Fix][UI Next][V1.0.0-Alpha] Fix the timing management list operation button is too small to be clicked accurately. (#8712)
This commit is contained in:
parent
26f50660f3
commit
b4fdb3c8eb
@ -105,7 +105,7 @@ export function useTable() {
|
||||
{
|
||||
circle: true,
|
||||
type: 'info',
|
||||
size: 'tiny',
|
||||
size: 'small',
|
||||
disabled: row.releaseState === 'ONLINE',
|
||||
onClick: () => {
|
||||
handleEdit(row)
|
||||
@ -120,7 +120,7 @@ export function useTable() {
|
||||
{
|
||||
circle: true,
|
||||
type: row.releaseState === 'ONLINE' ? 'error' : 'warning',
|
||||
size: 'tiny',
|
||||
size: 'small',
|
||||
onClick: () => {
|
||||
handleReleaseState(row)
|
||||
}
|
||||
@ -153,7 +153,7 @@ export function useTable() {
|
||||
{
|
||||
circle: true,
|
||||
type: 'error',
|
||||
size: 'tiny'
|
||||
size: 'small'
|
||||
},
|
||||
{
|
||||
icon: () => h(DeleteOutlined)
|
||||
|
Loading…
Reference in New Issue
Block a user