/
wax_boy
/
semaphore_custom
Обзор
Документация
Войти
/
wax_boy
/
semaphore_custom
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
web/src/components/IntegrationExtractorRefsView.vue
30 строк
888 B
Denis Gukov
style(ui): spaces
26 ноя 2024, 10:57
26 ноя 2024, 10:57
1128fc6
Код
Авторство
О чём код?
<template> <div class="object-refs-view integration-extractor-refs-view"> <v-alert type="warning" > The {{ objectTitle }} can't be deleted because it used by the resources below </v-alert> <div v-for="s in sections" class="object-refs-view__section" :key="s.slug" > <div class="object-refs-view__section-title"> <v-icon small class="mr-2">mdi-{{ s.icon }}</v-icon>{{ s.title }}: </div> <div class="ml-6"> <span v-for="t in integrationExtractorRefs[s.slug]" class="object-refs-view__link-wrap" :key="t.id" > <router-link :to="`/project/${projectId}/integrations/${t.integrationId}/extractor/${t.itemId}`" class="object-refs-view__link">{{ t.name }}</router-link> </span> </div> </div> </div> </template>