Skip to content

Commit

Permalink
fix: 调整 继续选取 到多选剪藏下 (#48)
Browse files Browse the repository at this point in the history
* fix: 调整 `继续选取` 到多选剪藏下

* chore: update display text
  • Loading branch information
vagusX authored Jul 25, 2023
1 parent 0f8f320 commit b321903
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pages/inject/content-scripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ class App {
pointerEvents: 'none', // 遮罩层不需要响应鼠标事件
})
.appendTo('body');
const maskMessage = $('<div>')
$('<div>')
.addClass('mask-message')
.text('单击区域以选中,再次单击取消选中\nESC 退出, ↲ 完成')
.text('单击区域以选中,再次单击取消选中 ESC 退出, ↲ 完成')
.css({
color: '#fff',
fontSize: '16px',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/sandbox/SaveTo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const useViewModel = props => {

useEffect(() => {
setShowContinueButton(
currentType === SELECT_TYPES[1].key && !isEmpty(editorValue),
currentType === SELECT_TYPES[0].key && !isEmpty(editorValue),
);
}, [ editorValue, currentType ]);

Expand Down

0 comments on commit b321903

Please sign in to comment.