king
2024-06-06 9be28daa8b377b054127fd78254dfa63d29e3a7b
src/tabviews/custom/components/table/edit-table/normalTable/index.jsx
@@ -2653,9 +2653,15 @@
    }
    let height = setting.height || false
    if (height && height <= 100) {
    if (height) {
      if (height <= 100) {
        if (height < 0) {
          height = `calc(100vh - ${-height}px)`
        } else {
      height = height + 'vh'
    }
      }
    }
    let style = {
      '--mk-table-border-color': setting.borderColor || '#e8e8e8',