ソースを参照

fix(UI): consider 2px border at grid end

(cherry picked from commit 6b1c825741)
version-14
Maharshi Patel 2年前
committed by Mergify
コミット
c85fb2d17b
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      frappe/public/js/frappe/form/grid_row.js

+ 1
- 1
frappe/public/js/frappe/form/grid_row.js ファイルの表示

@@ -930,7 +930,7 @@ export default class GridRow {
event.preventDefault();

let grid_start = inital_position_x - event.touches[0].clientX;
let grid_end = grid.clientWidth - grid_container.clientWidth;
let grid_end = grid.clientWidth - grid_container.clientWidth + 2;

if (grid_start < 0) {
grid_start = 0;


読み込み中…
キャンセル
保存