Skip to content

Commit 6711691

Browse files
committed
Bump version
1 parent 2c1aac8 commit 6711691

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/layout/main/editing/EditingPane.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
if(unit == null) {
6262
setTargetText("");
6363
} else {
64-
setTargetText(unit?.target ?? (selectedFile?.isSource ? unit.source : ""));
64+
setTargetText(unit.target ?? (selectedFile?.isSource ? unit.source : ""));
6565
}
6666
}
6767

src/stores/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const VERSION = "0.3.0";
1+
const VERSION = "0.3.1";
22

33
export default {
44
VERSION: VERSION

0 commit comments

Comments
 (0)