|
|
|
@ -286,6 +286,13 @@
|
|
|
|
|
> |
|
|
|
|
<td data-v-step="2"> |
|
|
|
|
<div class="d-flex align-center"> |
|
|
|
|
<v-progress-circular |
|
|
|
|
v-if="props.item.loading" |
|
|
|
|
class="mr-2" |
|
|
|
|
size="15" |
|
|
|
|
indeterminate |
|
|
|
|
/> |
|
|
|
|
<template v-else> |
|
|
|
|
<v-icon |
|
|
|
|
x-small |
|
|
|
|
class="mr-2" |
|
|
|
@ -322,7 +329,7 @@
|
|
|
|
|
: 'mdi-code-json' |
|
|
|
|
}} |
|
|
|
|
</x-icon> |
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
<v-tooltip bottom> |
|
|
|
|
<template #activator="{on}"> |
|
|
|
|
<div |
|
|
|
@ -1091,7 +1098,7 @@ export default {
|
|
|
|
|
} |
|
|
|
|
this.loaded = true |
|
|
|
|
}, |
|
|
|
|
projectRouteHandler(project) { |
|
|
|
|
async projectRouteHandler(project) { |
|
|
|
|
if (!project.allowed) { |
|
|
|
|
this.$toast.info(`Contact following owner email to get project access : ${project.owner}`).goAway(5000) |
|
|
|
|
return |
|
|
|
@ -1105,11 +1112,12 @@ export default {
|
|
|
|
|
.goAway(5000) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.$set(project, 'loading', true) |
|
|
|
|
if (!this.deleteBtnClicked) { |
|
|
|
|
this.$router.push({ |
|
|
|
|
await this.$router.push({ |
|
|
|
|
path: `/nc/${project.id}` |
|
|
|
|
}) |
|
|
|
|
// this.$set(project, 'loading', false) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
async projectEdit(project) { |
|
|
|
|