Browse Source

Show buttons for uploading, downloading, and deleting datasets for admin only.

pull/1504/head
youichiro 3 years ago
parent
commit
be4bc04783
1 changed files with 4 additions and 2 deletions
  1. 6
      frontend/pages/projects/_id/dataset/index.vue

6
frontend/pages/projects/_id/dataset/index.vue

@ -1,6 +1,6 @@
<template>
<v-card>
<v-card-title>
<v-card-title v-if="isProjectAdmin">
<action-menu
@upload="upload"
@download="dialogDownload=true"
@ -112,7 +112,8 @@ export default Vue.extend({
project: {} as ProjectDTO,
item: {} as ExampleListDTO,
selected: [] as ExampleDTO[],
isLoading: false
isLoading: false,
isProjectAdmin: false
}
},
@ -148,6 +149,7 @@ export default Vue.extend({
async created() {
this.project = await this.$services.project.findById(this.projectId)
this.isProjectAdmin = this.project.current_users_role.is_project_admin
},
methods: {

Loading…
Cancel
Save