Skip to content

Commit

Permalink
fix: Add missing .qvf extension to file names in Excel file created b…
Browse files Browse the repository at this point in the history
…y app-export

Fixes #231
  • Loading branch information
Göran Sander committed Mar 31, 2023
1 parent 86b3c0d commit 23bb188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/app/class_allapps.js
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ class QlikSenseApps {
}

// Add app related info that will be useful in upstream code
resultStep2.qvfFileName = fileName;
resultStep2.qvfFileName = `${fileName}.qvf`;

// Add path to QVF dir
const fileDir = mergeDirFilePath([execPath, this.options.outputDir]);
Expand Down

0 comments on commit 23bb188

Please sign in to comment.