Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/precommit_hook.js -…
Browse files Browse the repository at this point in the history
…-ref HEAD~1..HEAD --fix'
  • Loading branch information
kibanamachine committed Sep 19, 2022
1 parent e6be719 commit fb45313
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const calculateTableColumnsDimensions = (width?: number) => {
breakPoint: 'large',
};
if (width === undefined) return defaultSettings;
if (width <= TABLE_BREAKPOINTS['small']) {
if (width <= TABLE_BREAKPOINTS.small) {
return {
expander: '25px',
type: '40px',
Expand All @@ -66,7 +66,7 @@ export const calculateTableColumnsDimensions = (width?: number) => {
breakPoint: 'small',
};
}
if (width <= TABLE_BREAKPOINTS['medium']) {
if (width <= TABLE_BREAKPOINTS.medium) {
return {
expander: '25px',
type: '40px',
Expand Down

0 comments on commit fb45313

Please sign in to comment.