Commit 05135d68 authored by Filipa Lacerda's avatar Filipa Lacerda

Fix permissions error

parent 80eaed16
......@@ -60,6 +60,8 @@
data() {
const environmentsData = document.querySelector('#environments-list-view').dataset;
debugger;
return {
state: this.store.state,
visibility: 'available',
......@@ -234,7 +236,9 @@
is="environment-item"
v-for="children in model.children"
:model="children"
:toggleRow="toggleRow.bind(children)">
:toggleRow="toggleRow.bind(children)"
:can-create-deployment="canCreateDeploymentParsed"
:can-read-environment="canReadEnvironmentParsed">
</tr>
</template>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment