diff --git a/web/src/lang/en_us.js b/web/src/lang/en_us.js
index 561ee635..d1071273 100644
--- a/web/src/lang/en_us.js
+++ b/web/src/lang/en_us.js
@@ -167,6 +167,7 @@ export default {
italic: 'Italic',
textDecoration: 'Text decoration',
underline: 'Underline',
+ none: 'None',
lineThrough: 'Line through',
overline: 'Overline',
border: 'Border',
diff --git a/web/src/lang/zh_cn.js b/web/src/lang/zh_cn.js
index 1808366f..ffe6a7fc 100644
--- a/web/src/lang/zh_cn.js
+++ b/web/src/lang/zh_cn.js
@@ -166,6 +166,7 @@ export default {
addFontWeight: '加粗',
italic: '斜体',
textDecoration: '划线',
+ none: '无',
underline: '下划线',
lineThrough: '中划线',
overline: '上划线',
diff --git a/web/src/pages/Edit/components/Style.vue b/web/src/pages/Edit/components/Style.vue
index a718300a..8aba9892 100644
--- a/web/src/pages/Edit/components/Style.vue
+++ b/web/src/pages/Edit/components/Style.vue
@@ -142,6 +142,9 @@
v-model="style.textDecoration"
@change="update('textDecoration')"
>
+ {{
+ $t('style.none')
+ }}
{{
$t('style.underline')
}}