Skip to content

Commit fdfad7f

Browse files
committed
Updated the import statement to replace the colors variable name with bgColors and also inside the code wherever the colors variables have been used, replaced that with the bgColors
1 parent 335419b commit fdfad7f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/column/edit.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
verticalAlignCenter,
2424
verticalAlignTop,
2525
} from '../icons';
26-
import { colors } from '../constants';
26+
import { bgColors } from '../constants';
2727

2828
const contentVerticalAlignmentControls = [
2929
{
@@ -67,8 +67,8 @@ const ColumnSizeRangeControl = ( {
6767
};
6868

6969
export let bgColorOptions = [
70-
{ name: 'primary', color: colors.primary },
71-
{ name: 'secondary', color: colors.secondary },
70+
{ name: 'primary', color: bgColors.primary },
71+
{ name: 'secondary', color: bgColors.secondary },
7272
];
7373

7474
bgColorOptions = applyFilters(

0 commit comments

Comments
 (0)