This commit is contained in:
antelle 2019-09-20 23:25:43 +02:00
parent a10ee6c9f2
commit 328bdd68e2
2 changed files with 3 additions and 2 deletions

View File

@ -357,7 +357,8 @@ GroupModel.defineModelProperties({
group: null,
file: null,
parentGroup: null,
customIconId: null
customIconId: null,
isJustCreated: false
});
export { GroupModel };

View File

@ -237,7 +237,7 @@ class ListView extends View {
if (size) {
this.$el.css('flex', '0 0 ' + size + 'px');
} else {
this.$el.css('flex', null);
this.$el.css('flex', '');
}
}