fix(工作台): 修复一键同步待更新按钮提示信息错误问题
--bug=1045927 --user=郭雨琦 https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001045927
This commit is contained in:
parent
cea04d63e1
commit
9b3aaa7326
|
@ -556,6 +556,7 @@ const message = {
|
|||
workstation: {
|
||||
sync: 'Synchronize',
|
||||
sync_setting: 'Sync settings',
|
||||
no_sync_content: 'Nothing to sync',
|
||||
custom_update_list_rule: 'Customize to-be-updated list rules',
|
||||
ignore: 'Ignore',
|
||||
past: 'past',
|
||||
|
|
|
@ -557,6 +557,7 @@ const message = {
|
|||
workstation: {
|
||||
sync: '同步',
|
||||
sync_setting: '同步设置',
|
||||
no_sync_content: '没有需要同步的内容',
|
||||
custom_update_list_rule: '自定义待更新列表规则',
|
||||
ignore: '忽略',
|
||||
past: '过去',
|
||||
|
|
|
@ -556,6 +556,7 @@ const message = {
|
|||
workstation: {
|
||||
sync: '同步',
|
||||
sync_setting: '同步設置',
|
||||
no_sync_content: '沒有需要同步的內容',
|
||||
custom_update_list_rule: '自定義待更新列表規則',
|
||||
ignore: '忽略',
|
||||
past: '過去',
|
||||
|
|
|
@ -407,14 +407,14 @@ export default {
|
|||
permissions: ['PROJECT_API_DEFINITION:READ+EDIT_CASE']
|
||||
},
|
||||
{
|
||||
tip: this.$t('workstation.sync'),
|
||||
tip: this.systemDisable ? this.$t('workstation.no_sync_content') : this.$t('workstation.sync'),
|
||||
icon: "el-icon-refresh",
|
||||
exec: this.openSyncCase,
|
||||
isDisable: this.systemDisable,
|
||||
permissions: ['PROJECT_API_DEFINITION:READ+EDIT_API']
|
||||
},
|
||||
{
|
||||
tip: this.$t('workstation.ignore'),
|
||||
tip: this.systemDisable ? this.$t('workstation.no_sync_content') : this.$t('workstation.ignore'),
|
||||
icon: "el-icon-close",
|
||||
exec: this.openIgnoreCase,
|
||||
isDisable: this.systemDisable,
|
||||
|
|
Loading…
Reference in New Issue