Skip to content

Commit

Permalink
fix: can not translate title by action
Browse files Browse the repository at this point in the history
close #1957
  • Loading branch information
hyoban committed Dec 1, 2024
1 parent 36cdbbd commit ef68bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/renderer/src/modules/entry-column/translation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const EntryTranslation: Component<{

useOverlay?: boolean
isHTML?: boolean
}> = ({ source, target, showTranslation, className, side, useOverlay, isHTML }) => {
}> = ({ source, target, showTranslation = true, className, side, useOverlay, isHTML }) => {
let nextTarget = target
if (source === target) {
nextTarget = undefined
Expand Down

0 comments on commit ef68bae

Please sign in to comment.