Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenny-Hui committed Jul 24, 2024
1 parent 2c1aac8 commit 6711691
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/layout/main/editing/EditingPane.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
if(unit == null) {
setTargetText("");
} else {
setTargetText(unit?.target ?? (selectedFile?.isSource ? unit.source : ""));
setTargetText(unit.target ?? (selectedFile?.isSource ? unit.source : ""));
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/stores/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const VERSION = "0.3.0";
const VERSION = "0.3.1";

export default {
VERSION: VERSION
Expand Down

0 comments on commit 6711691

Please sign in to comment.