We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7df67a2 commit 2a36601Copy full SHA for 2a36601
1 file changed
src/Col.js
@@ -53,15 +53,15 @@ const Col = (props) => {
53
colWidths.forEach(colWidth => {
54
const columnProp = props[colWidth];
55
56
+ delete attributes[colWidth];
57
+
58
if (!columnProp) {
59
return;
60
}
61
62
const isXs = colWidth === 'xs';
63
let colClass;
64
- delete attributes[colWidth];
-
65
if (isobject(columnProp)) {
66
const colSizeInterfix = isXs ? '-' : `-${colWidth}-`;
67
colClass = getColumnSizeClass(isXs, colWidth, columnProp.size);
0 commit comments