Skip to content

Commit 3a8aa43

Browse files
authored
fix: avoid directives on non-element roots (#12597)
1 parent 1b19a75 commit 3a8aa43

13 files changed

Lines changed: 20 additions & 4 deletions

File tree

frontend/src/components/system-upgrade/upgrade/index.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
{{ upgradeInfo.testVersion }}
1616
</el-radio>
1717
</el-radio-group>
18-
<MarkDownEditor v-loading="loading" :content="upgradeInfo.releaseNote" />
18+
<div v-loading="loading">
19+
<MarkDownEditor :content="upgradeInfo.releaseNote" />
20+
</div>
1921
</div>
2022
<template #footer>
2123
<span class="dialog-footer">

frontend/src/lang/modules/en.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3658,6 +3658,7 @@ const message = {
36583658
host_process_view: 'Process View',
36593659
host_ssh_view: 'SSH View',
36603660
host_disk_view: 'Disk View',
3661+
xpack_app_view: 'APP View',
36613662
xpack_waf_view: 'WAF View',
36623663
xpack_waf_manage: 'WAF Manage',
36633664
xpack_node_view: 'Node View',

frontend/src/lang/modules/es-es.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3700,6 +3700,7 @@ const message = {
37003700
host_process_view: 'Vista de procesos',
37013701
host_ssh_view: 'Vista de SSH',
37023702
host_disk_view: 'Vista de disco',
3703+
xpack_app_view: 'Vista de APP',
37033704
xpack_waf_view: 'Vista de WAF',
37043705
xpack_waf_manage: 'Gestión de WAF',
37053706
xpack_node_view: 'Vista de nodos',

frontend/src/lang/modules/ja.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3686,6 +3686,7 @@ const message = {
36863686
host_process_view: 'プロセス表示',
36873687
host_ssh_view: 'SSH 表示',
36883688
host_disk_view: 'ディスク表示',
3689+
xpack_app_view: 'APP 表示',
36893690
xpack_waf_view: 'WAF 表示',
36903691
xpack_waf_manage: 'WAF 管理',
36913692
xpack_node_view: 'ノード表示',

frontend/src/lang/modules/ko.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3603,6 +3603,7 @@ const message = {
36033603
host_process_view: '프로세스 보기',
36043604
host_ssh_view: 'SSH 보기',
36053605
host_disk_view: '디스크 보기',
3606+
xpack_app_view: 'APP 보기',
36063607
xpack_waf_view: 'WAF 보기',
36073608
xpack_waf_manage: 'WAF 관리',
36083609
xpack_node_view: '노드 보기',

frontend/src/lang/modules/ms.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3738,6 +3738,7 @@ const message = {
37383738
host_process_view: 'Paparan Proses',
37393739
host_ssh_view: 'Paparan SSH',
37403740
host_disk_view: 'Paparan Cakera',
3741+
xpack_app_view: 'Paparan APP',
37413742
xpack_waf_view: 'Paparan WAF',
37423743
xpack_waf_manage: 'Pengurusan WAF',
37433744
xpack_node_view: 'Paparan Nod',

frontend/src/lang/modules/pt-br.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3879,6 +3879,7 @@ const message = {
38793879
host_process_view: 'Visualização de Processos',
38803880
host_ssh_view: 'Visualização do SSH',
38813881
host_disk_view: 'Visualização de Disco',
3882+
xpack_app_view: 'Visualização do APP',
38823883
xpack_waf_view: 'Visualização do WAF',
38833884
xpack_waf_manage: 'Gerenciamento do WAF',
38843885
xpack_node_view: 'Visualização de Nó',

frontend/src/lang/modules/ru.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3731,6 +3731,7 @@ const message = {
37313731
host_process_view: 'Просмотр процессов',
37323732
host_ssh_view: 'Просмотр SSH',
37333733
host_disk_view: 'Просмотр диска',
3734+
xpack_app_view: 'Просмотр APP',
37343735
xpack_waf_view: 'Просмотр WAF',
37353736
xpack_waf_manage: 'Управление WAF',
37363737
xpack_node_view: 'Просмотр узлов',

frontend/src/lang/modules/tr.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3733,6 +3733,7 @@ const message = {
37333733
host_process_view: 'İşlem Görünümü',
37343734
host_ssh_view: 'SSH Görünümü',
37353735
host_disk_view: 'Disk Görünümü',
3736+
xpack_app_view: 'APP Görünümü',
37363737
xpack_waf_view: 'WAF Görünümü',
37373738
xpack_waf_manage: 'WAF Yönetimi',
37383739
xpack_node_view: 'Düğüm Görünümü',

frontend/src/lang/modules/zh-Hant.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3391,6 +3391,7 @@ const message = {
33913391
host_process_view: '程序檢視',
33923392
host_ssh_view: 'SSH 檢視',
33933393
host_disk_view: '磁碟檢視',
3394+
xpack_app_view: 'APP 檢視',
33943395
xpack_waf_view: 'WAF 檢視',
33953396
xpack_waf_manage: 'WAF 管理',
33963397
xpack_node_view: '節點檢視',

0 commit comments

Comments
 (0)