Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
srnovus committed Oct 31, 2024
1 parent f370fc2 commit d92a994
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions packages/client/src/pages/admin/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ import {
provideMetadataReceiver,
} from "@/scripts/page-metadata";
import icon from "@/scripts/icon";
import Integrations from './integrations.vue' // Importa el componente de integración
const isEmpty = (x: string | null) => x == null || x === "";
const el = ref<HTMLElement | null>(null);
Expand Down Expand Up @@ -260,7 +261,7 @@ const menuDef = computed(() => [
},
{
icon: `${icon("ph-thin ph-plug")}`,
text: i18n.ts.integration.title,
text: i18n.ts.integration,
to: "/admin/integrations",
active: currentPage.value?.route.name === "integrations",
},
Expand Down Expand Up @@ -473,4 +474,4 @@ defineExpose({
}
}
}
</style>
</style>
2 changes: 1 addition & 1 deletion packages/client/src/pages/admin/integrations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</template>

<script lang="ts" setup>
import {} from "vue";
import { ref, computed } from "vue";
import XGithub from "./integrations.github.vue";
import FormSuspense from "@/components/form/suspense.vue";
import FormFolder from "@/components/form/folder.vue";
Expand Down

0 comments on commit d92a994

Please sign in to comment.