Skip to content

Commit

Permalink
fix: add missing locales
Browse files Browse the repository at this point in the history
  • Loading branch information
satrong committed May 12, 2024
1 parent f524eb1 commit 2394742
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/knowledgebases/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ function onShowUpdate(data: KnowledgeBase) {

<template #actions-data="{ row }">
<div class="action-btn">
<UTooltip text="Update">
<UTooltip :text="t('global.update')">
<UButton icon="i-heroicons-pencil-square-solid" variant="ghost" class="mx-1" @click="onShowUpdate(row)" />
</UTooltip>
<UTooltip text="Delete">
<UTooltip :text="t('global.delete')">
<UButton color="red" icon="i-heroicons-trash-20-solid" variant="ghost" class="mx-1"
@click="onDelete(row)" />
</UTooltip>
Expand Down

0 comments on commit 2394742

Please sign in to comment.