Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/lang/modules/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ const message = {
hostname: 'Hostname',
passwd: 'System password',
passwdHelper: 'Input characters cannot include $ and &',
timeZone: 'System time zone',
timeZone: 'Time zone',
localTime: 'Server time',
timeZoneChangeHelper: 'Modifying the system time zone requires restarting the service. Continue?',
timeZoneHelper: `If you don't install "timedatectl" command, you may not change the time zone. Because system uses that command to change time zone.`,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes in this code snippet are primarily related to string translations. The most noticeable change is the replacement of "'System time zone'" with "'Time zone'". This might be an intended translation update or a typo.

There are no other specific irregularities, potential issues, or optimization suggestions based on the provided information. If further context or additional modifications are needed, they should be discussed separately to ensure thorough review and consideration.

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/toolbox/device/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<el-row style="margin-top: 20px">
<el-col :span="1"><br /></el-col>
<el-col :xs="24" :sm="20" :md="20" :lg="10" :xl="10">
<el-form :model="form" label-position="left" ref="formRef" label-width="120px">
<el-form :model="form" label-position="left" ref="formRef" label-width="130px">
<el-form-item label="DNS" prop="dnsItem">
<el-input disabled v-model="form.dnsItem">
<template #append>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The main difference is the change from label-width="120px" to label-width="130px" in the <el-form> component. This adjustment can potentially make the form labels appear slightly wider, which could improve usability depending on how they're being displayed. There are no other significant issues with the provided code snippet.

Expand Down
Loading