-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Fix the issue of pagination errors in the backup list #7673
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -883,7 +883,7 @@ const message = { | |
perDayHelper: '每日 {0}:{1} 執行', | ||
perHourHelper: '每小時 {0}分 執行', | ||
perNDayHelper: '每 {0} 日 {1}:{2} 執行', | ||
perNHourHelper: '每 {0}小時 {1} 執行', | ||
perNHourHelper: '每 {0}小時 {1}分 執行', | ||
perNMinuteHelper: '每 {0}分 執行', | ||
perNSecondHelper: '每 {0}秒 執行', | ||
perMonth: '每月', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code difference you provided involves updating a message template for scheduling options. Specifically, the "每 {0} 小時 {1}" (per hour) message has been changed to "每 {0} 小時 {1} 分" (every X hours Y minutes), which is more accurate and natural. Suggestion: Remove the extra space after "{1}" in the original line, resulting in |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -883,7 +883,7 @@ const message = { | |
perDayHelper: '每日 {0}:{1} 执行', | ||
perHourHelper: '每小时 {0}分 执行', | ||
perNDayHelper: '每 {0} 日 {1}:{2} 执行', | ||
perNHourHelper: '每 {0}小时 {1} 执行', | ||
perNHourHelper: '每 {0}小时 {1}分 执行', | ||
perNMinuteHelper: '每 {0}分 执行', | ||
perNSecondHelper: '每 {0}秒 执行', | ||
perMonth: '每月', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There seems to be an incorrect format for the "perNHourHelper" string. It appears that the current pattern includes minutes (e.g., "每 5小时 30分 执行"), but it might not match expected behavior if hours and minutes were intended separately. To correct this, you could simplify the string patterns where necessary: - perNHourHelper: '每 {0}小时 {1} 分执行',
+ perNHourHelper: '每 {0} 小时{1}分钟执行', // Simplify to just hours and minutes This change ensures consistency between different time units by providing a more straightforward representation of the schedule format. |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes to the code seem mostly correct, but there is a change regarding imports and types. The
UploadProps
,UploadRawFile
types have been added to theimport
. These likely provide additional functionality such as handling file properties directly within the Vue component.No other significant irregularities, potential issues, or optimizations were noted in this particular code snippet based on my analysis of its content.