mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-21 17:01:04 +01:00
fix(ui): check project type in dashboard menu
Some checks are pending
Dev / build-local (push) Waiting to run
Dev / migrate-boltdb (push) Blocked by required conditions
Dev / migrate-mysql (push) Blocked by required conditions
Dev / migrate-mariadb (push) Blocked by required conditions
Dev / migrate-postgres (push) Blocked by required conditions
Dev / integrate-boltdb (push) Blocked by required conditions
Dev / integrate-mysql (push) Blocked by required conditions
Dev / integrate-mariadb (push) Blocked by required conditions
Dev / integrate-postgres (push) Blocked by required conditions
Dev / deploy-server (push) Blocked by required conditions
Dev / deploy-runner (push) Blocked by required conditions
Some checks are pending
Dev / build-local (push) Waiting to run
Dev / migrate-boltdb (push) Blocked by required conditions
Dev / migrate-mysql (push) Blocked by required conditions
Dev / migrate-mariadb (push) Blocked by required conditions
Dev / migrate-postgres (push) Blocked by required conditions
Dev / integrate-boltdb (push) Blocked by required conditions
Dev / integrate-mysql (push) Blocked by required conditions
Dev / integrate-mariadb (push) Blocked by required conditions
Dev / integrate-postgres (push) Blocked by required conditions
Dev / deploy-server (push) Blocked by required conditions
Dev / deploy-runner (push) Blocked by required conditions
This commit is contained in:
parent
904ba3398c
commit
8c28aefada
@ -6,14 +6,21 @@
|
|||||||
:to="`/project/${projectId}/history`"
|
:to="`/project/${projectId}/history`"
|
||||||
>{{ $t('history') }}
|
>{{ $t('history') }}
|
||||||
</v-tab>
|
</v-tab>
|
||||||
|
|
||||||
<v-tab key="activity" :to="`/project/${projectId}/activity`">{{ $t('activity') }}</v-tab>
|
<v-tab key="activity" :to="`/project/${projectId}/activity`">{{ $t('activity') }}</v-tab>
|
||||||
|
|
||||||
<v-tab
|
<v-tab
|
||||||
v-if="canUpdateProject"
|
v-if="canUpdateProject"
|
||||||
key="settings"
|
key="settings"
|
||||||
:to="`/project/${projectId}/settings`"
|
:to="`/project/${projectId}/settings`"
|
||||||
>{{ $t('settings') }}
|
>{{ $t('settings') }}
|
||||||
</v-tab>
|
</v-tab>
|
||||||
<v-tab key="runners" :to="`/project/${projectId}/runners`">
|
|
||||||
|
<v-tab
|
||||||
|
v-if="projectType === ''"
|
||||||
|
key="runners"
|
||||||
|
:to="`/project/${projectId}/runners`"
|
||||||
|
>
|
||||||
{{ $t('runners') }}
|
{{ $t('runners') }}
|
||||||
<!-- <v-chip small class="ml-1" color="purple" style="color: white">Pro</v-chip> -->
|
<!-- <v-chip small class="ml-1" color="purple" style="color: white">Pro</v-chip> -->
|
||||||
<v-icon class="ml-1" large color="hsl(348deg, 86%, 61%)">mdi-professional-hexagon</v-icon>
|
<v-icon class="ml-1" large color="hsl(348deg, 86%, 61%)">mdi-professional-hexagon</v-icon>
|
||||||
|
Loading…
Reference in New Issue
Block a user