Skip to content

Commit 1291815

Browse files
authored
Disable the task table demo WIP (#102)
1 parent 6f36edf commit 1291815

File tree

3 files changed

+24
-28
lines changed

3 files changed

+24
-28
lines changed

cloudsplaining/output/dist/index.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cloudsplaining/output/src/App.vue

+21-25
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,11 @@
4040
@click="activeSection = 6"
4141
href="#">Appendices
4242
</b-nav-item>
43-
<b-nav-item
44-
:active="activeSection === 'task-table'"
45-
@click="activeSection = 7"
46-
href="#">Task Table Demo
47-
</b-nav-item>
48-
49-
43+
<!-- <b-nav-item-->
44+
<!-- :active="activeSection === 'task-table'"-->
45+
<!-- @click="activeSection = 7"-->
46+
<!-- href="#">Task Table Demo-->
47+
<!-- </b-nav-item>-->
5048
</b-navbar-nav>
5149
<b-navbar-nav class="ml-auto">
5250
<b-nav-text><strong>Account ID:</strong> {{ account_id }} | <strong>Account Name:</strong> {{ account_name }}</b-nav-text>
@@ -83,22 +81,20 @@
8381
<b-tab id="appendices">
8482
<Glossary/>
8583
</b-tab>
86-
<b-tab key="task-table">
87-
<br>
88-
<h3>Tasks (demo WIP)</h3>
89-
<br>
90-
<!-- <h3>Customer-Managed Policies</h3>-->
91-
<!-- <TaskTable managedBy="Customer" v-bind:items_mapping="getTaskTableMapping('Customer')"/>-->
92-
<!-- <br>-->
93-
<!-- TODO: Figure out the overlap issue where the two tables results in a double info field in Customer policies-->
94-
<h3>AWS-Managed Policies</h3>
95-
<TaskTable managedBy="AWS" v-bind:items_mapping="getTaskTableMapping('AWS')"/>
96-
<!--TODO: Task table for Inline Policies-->
97-
<!-- <h3>Inline Policies</h3>-->
98-
<!-- <TaskTable v-bind:policyNameMapping="getInlinePolicyNameMapping()"/>-->
99-
</b-tab>
100-
101-
84+
<!-- <b-tab key="task-table">-->
85+
<!-- <br>-->
86+
<!-- <h3>Tasks (demo WIP)</h3>-->
87+
<!-- <br>-->
88+
<!-- <h3>Customer-Managed Policies</h3>-->
89+
<!-- <TaskTable managedBy="Customer" v-bind:items_mapping="getTaskTableMapping('Customer')"/>-->
90+
<!-- <br>-->
91+
<!-- &lt;!&ndash;TODO: Figure out the overlap issue where the two tables results in a double info field in Customer policies&ndash;&gt;-->
92+
<!-- <h3>AWS-Managed Policies</h3>-->
93+
<!-- <TaskTable managedBy="AWS" v-bind:items_mapping="getTaskTableMapping('AWS')"/>-->
94+
<!-- &lt;!&ndash;TODO: Task table for Inline Policies&ndash;&gt;-->
95+
<!-- <h3>Inline Policies</h3>-->
96+
<!-- <TaskTable v-bind:policyNameMapping="getInlinePolicyNameMapping()"/>-->
97+
<!-- </b-tab>-->
10298
</b-tabs>
10399
</b-container>
104100
<b-container>
@@ -121,7 +117,7 @@
121117
import Guidance from './components/Guidance'
122118
import Glossary from './components/Glossary'
123119
import PolicyTable from './components/PolicyTable'
124-
import TaskTable from './components/TaskTable'
120+
// import TaskTable from './components/TaskTable'
125121
126122
const managedPoliciesUtil = require('./util/managed-policies');
127123
const inlinePoliciesUtil = require('./util/inline-policies');
@@ -186,7 +182,7 @@
186182
Guidance,
187183
Glossary,
188184
PolicyTable,
189-
TaskTable
185+
// TaskTable
190186
},
191187
192188
data() {

index.html

+2-2
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)