修复sendfile功能显示错误

This commit is contained in:
GoEdgeLab
2022-04-19 14:19:06 +08:00
parent 07bb63c765
commit b436b5b9fa
2 changed files with 4 additions and 4 deletions

View File

@@ -46,8 +46,8 @@
<p class="comment">保持缓存文件句柄提升缓存文件打开速度建议数量是缓存文件数量的10%。</p>
</td>
</tr>
<tr>
<td class="color-border" v-show="teaIsPlus">开启Sendfile</td>
<tr v-show="teaIsPlus">
<td class="color-border">开启Sendfile</td>
<td>
<checkbox name="fileEnableSendfile"></checkbox>
<p class="comment"><plus-label></plus-label>使用sendfile提升发送缓存文件的效率。</p>

View File

@@ -55,8 +55,8 @@
<p class="comment">保持缓存文件句柄提升缓存文件打开速度建议数量是缓存文件数量的10%。</p>
</td>
</tr>
<tr>
<td class="color-border" v-show="teaIsPlus">开启Sendfile</td>
<tr v-show="teaIsPlus">
<td class="color-border">开启Sendfile</td>
<td>
<checkbox name="fileEnableSendfile" v-model="cachePolicy.options.enableSendfile"></checkbox>
<p class="comment"><plus-label></plus-label>使用sendfile提升发送缓存文件的效率。</p>