[bug] fix update 3.9.0 from adding header border

This commit is contained in:
Kuldeep M 2019-06-13 15:49:24 +01:00
parent d69eead3f4
commit bf09fcd852
2 changed files with 3 additions and 3 deletions

View File

@ -455,8 +455,8 @@ var update = (function() {
delete data.state.header.padding;
data.state.header.radius = false;
data.state.header.border = {
top: data.state.header.border.top.width,
bottom: data.state.header.border.bottom.width
top: 0,
bottom: 0
};
data.state.layout.padding = 4;
data.state.layout.gutter = 2;

View File

@ -1,7 +1,7 @@
var version = (function() {
// version is normally bumped when the state needs changing or any new functionality is added
var current = "3.9.0";
var current = "3.9.1";
var compare = function(a, b) {
var pa = a.split(".");