|
@@ -897,7 +897,7 @@ export default defineComponent({
|
|
|
const copyText = () => {
|
|
|
const { chartInfo } = state;
|
|
|
let input = document.createElement("input");
|
|
|
- input.value = language.value == 'ch'?chartInfo.ChartName:chartInfo.ChartNameEn;
|
|
|
+ input.value = chartInfo.ChartName;
|
|
|
document.body.appendChild(input)
|
|
|
input.select();
|
|
|
document.execCommand('copy');
|