Skip to content

Commit

Permalink
UI change (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
tongwl committed Nov 10, 2023
1 parent 265f02d commit f1fc9a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kyuubi-server/web-ui/src/locales/en_US/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default {
failure_reason: 'Failure Reason',
session_properties: 'Session Properties',
no_data: 'No data',
run_sql_tips: 'Run a sql to get result',
run_sql_tips: 'Run a SQL to get result',
operation: {
text: 'Operation',
delete_confirm: 'Delete Confirm',
Expand Down
2 changes: 1 addition & 1 deletion kyuubi-server/web-ui/src/locales/zh_CN/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default {
failure_reason: '失败原因',
session_properties: 'Session 参数',
no_data: '无数据',
run_sql_tips: '请运行sql获取结果',
run_sql_tips: '请运行SQL获取结果',
operation: {
text: '操作',
delete_confirm: '确认删除',
Expand Down
4 changes: 2 additions & 2 deletions kyuubi-server/web-ui/src/views/editor/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
const editableTabsValue = ref('1')
const editableTabs = ref([
{
title: 'Sql1',
title: 'Session 1',
name: '1'
}
])
Expand All @@ -56,7 +56,7 @@
const tabLength = editableTabs.value.length + 1
const newTabName = `${tabLength}`
editableTabs.value.push({
title: `Sql${tabLength}`,
title: `Session ${tabLength}`,
name: newTabName
})
editableTabsValue.value = newTabName
Expand Down

0 comments on commit f1fc9a2

Please sign in to comment.