Merge branch 'KIN-UI-014-frontend_dev'
This commit is contained in:
commit
53a7fa2a43
3 changed files with 14 additions and 6 deletions
|
|
@ -129,7 +129,11 @@
|
||||||
"saving_link": "Saving...",
|
"saving_link": "Saving...",
|
||||||
"cancel_link": "Cancel",
|
"cancel_link": "Cancel",
|
||||||
"delete_link_confirm": "Delete link?",
|
"delete_link_confirm": "Delete link?",
|
||||||
"select_project_error": "Select a project"
|
"select_project_error": "Select a project",
|
||||||
|
"ssh_host": "SSH Host",
|
||||||
|
"ssh_user": "SSH User",
|
||||||
|
"ssh_key_path": "SSH Key Path",
|
||||||
|
"ssh_proxy_jump": "SSH ProxyJump"
|
||||||
},
|
},
|
||||||
"taskDetail": {
|
"taskDetail": {
|
||||||
"pipeline_already_running": "Pipeline already running",
|
"pipeline_already_running": "Pipeline already running",
|
||||||
|
|
|
||||||
|
|
@ -129,7 +129,11 @@
|
||||||
"saving_link": "Сохраняем...",
|
"saving_link": "Сохраняем...",
|
||||||
"cancel_link": "Отмена",
|
"cancel_link": "Отмена",
|
||||||
"delete_link_confirm": "Удалить связь?",
|
"delete_link_confirm": "Удалить связь?",
|
||||||
"select_project_error": "Выберите проект"
|
"select_project_error": "Выберите проект",
|
||||||
|
"ssh_host": "SSH Хост",
|
||||||
|
"ssh_user": "SSH Пользователь",
|
||||||
|
"ssh_key_path": "Путь к SSH ключу",
|
||||||
|
"ssh_proxy_jump": "SSH ProxyJump"
|
||||||
},
|
},
|
||||||
"taskDetail": {
|
"taskDetail": {
|
||||||
"pipeline_already_running": "Pipeline уже запущен",
|
"pipeline_already_running": "Pipeline уже запущен",
|
||||||
|
|
|
||||||
|
|
@ -1639,22 +1639,22 @@ async function addDecision() {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label class="block text-xs text-gray-500 mb-1">SSH Host</label>
|
<label class="block text-xs text-gray-500 mb-1">{{ t('settings.ssh_host') }}</label>
|
||||||
<input v-model="settingsForm.ssh_host" type="text" placeholder="vdp-prod"
|
<input v-model="settingsForm.ssh_host" type="text" placeholder="vdp-prod"
|
||||||
class="w-full bg-gray-900 border border-gray-700 rounded px-3 py-2 text-sm text-gray-200 font-mono focus:outline-none focus:border-gray-500" />
|
class="w-full bg-gray-900 border border-gray-700 rounded px-3 py-2 text-sm text-gray-200 font-mono focus:outline-none focus:border-gray-500" />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label class="block text-xs text-gray-500 mb-1">SSH User</label>
|
<label class="block text-xs text-gray-500 mb-1">{{ t('settings.ssh_user') }}</label>
|
||||||
<input v-model="settingsForm.ssh_user" type="text" placeholder="root"
|
<input v-model="settingsForm.ssh_user" type="text" placeholder="root"
|
||||||
class="w-full bg-gray-900 border border-gray-700 rounded px-3 py-2 text-sm text-gray-200 font-mono focus:outline-none focus:border-gray-500" />
|
class="w-full bg-gray-900 border border-gray-700 rounded px-3 py-2 text-sm text-gray-200 font-mono focus:outline-none focus:border-gray-500" />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label class="block text-xs text-gray-500 mb-1">SSH Key Path</label>
|
<label class="block text-xs text-gray-500 mb-1">{{ t('settings.ssh_key_path') }}</label>
|
||||||
<input v-model="settingsForm.ssh_key_path" type="text" placeholder="~/.ssh/id_rsa"
|
<input v-model="settingsForm.ssh_key_path" type="text" placeholder="~/.ssh/id_rsa"
|
||||||
class="w-full bg-gray-900 border border-gray-700 rounded px-3 py-2 text-sm text-gray-200 font-mono focus:outline-none focus:border-gray-500" />
|
class="w-full bg-gray-900 border border-gray-700 rounded px-3 py-2 text-sm text-gray-200 font-mono focus:outline-none focus:border-gray-500" />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label class="block text-xs text-gray-500 mb-1">SSH ProxyJump</label>
|
<label class="block text-xs text-gray-500 mb-1">{{ t('settings.ssh_proxy_jump') }}</label>
|
||||||
<input v-model="settingsForm.ssh_proxy_jump" type="text" placeholder="jumpt"
|
<input v-model="settingsForm.ssh_proxy_jump" type="text" placeholder="jumpt"
|
||||||
class="w-full bg-gray-900 border border-gray-700 rounded px-3 py-2 text-sm text-gray-200 font-mono focus:outline-none focus:border-gray-500" />
|
class="w-full bg-gray-900 border border-gray-700 rounded px-3 py-2 text-sm text-gray-200 font-mono focus:outline-none focus:border-gray-500" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue