Skip to content

Commit

Permalink
Spaces added
Browse files Browse the repository at this point in the history
  • Loading branch information
olhabn committed Feb 3, 2020
1 parent b3ffd26 commit 6d73a4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/foam/u2/ExportModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ foam.CLASS({
}

var filteredColumnsCopy = this.filteredTableColumns;
if(!this.useFiltered) {
if( ! this.useFiltered ) {
this.filteredTableColumns$.set(null);
}

Expand All @@ -142,7 +142,7 @@ foam.CLASS({
await exportDriver.exportDAO(this.__context__, this.exportData) :
await exportDriver.exportFObject(this.__context__, this.exportObj);

if(!this.useFiltered) {
if( ! this.useFiltered ) {
this.filteredTableColumns$.set(filteredColumnsCopy);
}
},
Expand All @@ -154,7 +154,7 @@ foam.CLASS({
}

var filteredColumnsCopy = this.filteredTableColumns;
if(!this.useFiltered) {
if( ! this.useFiltered ) {
this.filteredTableColumns$.set(null);
}

Expand All @@ -174,7 +174,7 @@ foam.CLASS({
link.click();
})

if(!this.useFiltered) {
if( ! this.useFiltered ) {
this.filteredTableColumns$.set(filteredColumnsCopy);
}
}
Expand Down

0 comments on commit 6d73a4b

Please sign in to comment.