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 2025ed5 commit 5d6e19dCopy full SHA for 5d6e19d
src/components/Canvas/Sections/Spacing.vue
@@ -86,7 +86,6 @@ export default {
86
.sort((keyA, keyB) => {
87
const aInPx = this.data[keyA].indexOf('rem') !== -1 ? remToPx(this.data[keyA]) : parseFloat(this.data[keyA])
88
const bInPx = this.data[keyB].indexOf('rem') !== -1 ? remToPx(this.data[keyB]) : parseFloat(this.data[keyB])
89
- console.log(this.data[keyA], aInPx, bInPx)
90
return aInPx - bInPx
91
})
92
.map(key => {
0 commit comments