Skip to content

Commit 4b56494

Browse files
committed
fix: 修复压缩算法设置
1 parent 29efc44 commit 4b56494

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/config/components/Form.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -576,11 +576,11 @@ const flags_default_protocolOptions = reactive([
576576
const compressionAlgorithmOptions = reactive([
577577
{
578578
label: 'none',
579-
value: 'none'
579+
value: undefined
580580
},
581581
{
582582
label: 'zstd',
583-
value: '2'
583+
value: 2
584584
}
585585
])
586586
const getPublicPeers = async () => {

0 commit comments

Comments
 (0)