diff --git a/src/views/Selection/TranCont.js b/src/views/Selection/TranCont.js
index 28e2f2c..981a7af 100644
--- a/src/views/Selection/TranCont.js
+++ b/src/views/Selection/TranCont.js
@@ -32,7 +32,7 @@ function DictCont({ dictResult }) {
{dictResult.simple_means?.symbols?.map(({ ph_en, ph_am, parts }, idx) => (
{`英[${ph_en}] 美[${ph_am}]`}
-
+
{parts.map(({ part, means }, idx) => (
-
{part ? `[${part}] ${means.join("; ")}` : means.join("; ")}
diff --git a/src/views/Selection/index.js b/src/views/Selection/index.js
index ddf0858..edacd27 100644
--- a/src/views/Selection/index.js
+++ b/src/views/Selection/index.js
@@ -9,10 +9,10 @@ export default function Slection({ tranboxSetting, transApis }) {
const [selectedText, setSelText] = useState("");
const [text, setText] = useState("");
const [position, setPosition] = useState({ x: 0, y: 0 });
- const [boxSize, setBoxSize] = useState({ w: 600, h: 420 });
+ const [boxSize, setBoxSize] = useState({ w: 600, h: 400 });
const [boxPosition, setBoxPosition] = useState({
x: (window.innerWidth - 600) / 2,
- y: (window.innerHeight - 420) / 2,
+ y: (window.innerHeight - 400) / 2,
});
function handleMouseup(e) {