Merge branch 'KIN-UI-013-frontend_dev'
This commit is contained in:
commit
fa34fcd8cd
1 changed files with 5 additions and 5 deletions
|
|
@ -242,7 +242,7 @@ async function deleteLink(projectId: string, linkId: number) {
|
||||||
>
|
>
|
||||||
{{ savingTest[project.id] ? t('settings.saving_test') : t('settings.save_test') }}
|
{{ savingTest[project.id] ? t('settings.saving_test') : t('settings.save_test') }}
|
||||||
</button>
|
</button>
|
||||||
<span v-if="saveTestStatus[project.id]" class="text-xs" :class="saveTestStatus[project.id].startsWith('Error') ? 'text-red-400' : 'text-green-400'">
|
<span v-if="saveTestStatus[project.id]" class="text-xs" :class="saveTestStatus[project.id].startsWith(t('common.error')) ? 'text-red-400' : 'text-green-400'">
|
||||||
{{ saveTestStatus[project.id] }}
|
{{ saveTestStatus[project.id] }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -307,7 +307,7 @@ async function deleteLink(projectId: string, linkId: number) {
|
||||||
>
|
>
|
||||||
{{ savingDeployConfig[project.id] ? t('settings.saving_deploy') : t('settings.save_deploy_config') }}
|
{{ savingDeployConfig[project.id] ? t('settings.saving_deploy') : t('settings.save_deploy_config') }}
|
||||||
</button>
|
</button>
|
||||||
<span v-if="saveDeployConfigStatus[project.id]" class="text-xs" :class="saveDeployConfigStatus[project.id].startsWith('Error') ? 'text-red-400' : 'text-green-400'">
|
<span v-if="saveDeployConfigStatus[project.id]" class="text-xs" :class="saveDeployConfigStatus[project.id].startsWith(t('common.error')) ? 'text-red-400' : 'text-green-400'">
|
||||||
{{ saveDeployConfigStatus[project.id] }}
|
{{ saveDeployConfigStatus[project.id] }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -393,7 +393,7 @@ async function deleteLink(projectId: string, linkId: number) {
|
||||||
<span class="text-sm text-gray-300">{{ t('settings.auto_test') }}</span>
|
<span class="text-sm text-gray-300">{{ t('settings.auto_test') }}</span>
|
||||||
<span class="text-xs text-gray-500">{{ t('settings.auto_test_hint') }}</span>
|
<span class="text-xs text-gray-500">{{ t('settings.auto_test_hint') }}</span>
|
||||||
</label>
|
</label>
|
||||||
<span v-if="saveAutoTestStatus[project.id]" class="text-xs" :class="saveAutoTestStatus[project.id].startsWith('Error') ? 'text-red-400' : 'text-green-400'">
|
<span v-if="saveAutoTestStatus[project.id]" class="text-xs" :class="saveAutoTestStatus[project.id].startsWith(t('common.error')) ? 'text-red-400' : 'text-green-400'">
|
||||||
{{ saveAutoTestStatus[project.id] }}
|
{{ saveAutoTestStatus[project.id] }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -410,7 +410,7 @@ async function deleteLink(projectId: string, linkId: number) {
|
||||||
<span class="text-sm text-gray-300">{{ t('settings.worktrees') }}</span>
|
<span class="text-sm text-gray-300">{{ t('settings.worktrees') }}</span>
|
||||||
<span class="text-xs text-gray-500">{{ t('settings.worktrees_hint') }}</span>
|
<span class="text-xs text-gray-500">{{ t('settings.worktrees_hint') }}</span>
|
||||||
</label>
|
</label>
|
||||||
<span v-if="saveWorktreesStatus[project.id]" class="text-xs" :class="saveWorktreesStatus[project.id].startsWith('Error') ? 'text-red-400' : 'text-green-400'">
|
<span v-if="saveWorktreesStatus[project.id]" class="text-xs" :class="saveWorktreesStatus[project.id].startsWith(t('common.error')) ? 'text-red-400' : 'text-green-400'">
|
||||||
{{ saveWorktreesStatus[project.id] }}
|
{{ saveWorktreesStatus[project.id] }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -432,7 +432,7 @@ async function deleteLink(projectId: string, linkId: number) {
|
||||||
{{ syncing[project.id] ? t('settings.syncing') : t('settings.sync_obsidian') }}
|
{{ syncing[project.id] ? t('settings.syncing') : t('settings.sync_obsidian') }}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<span v-if="saveStatus[project.id]" class="text-xs" :class="saveStatus[project.id].startsWith('Error') ? 'text-red-400' : 'text-green-400'">
|
<span v-if="saveStatus[project.id]" class="text-xs" :class="saveStatus[project.id].startsWith(t('common.error')) ? 'text-red-400' : 'text-green-400'">
|
||||||
{{ saveStatus[project.id] }}
|
{{ saveStatus[project.id] }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue