Skip to content

Commit

Permalink
style(uuid): remove UUIDs from proposals table
Browse files Browse the repository at this point in the history
  • Loading branch information
brucetony committed Sep 2, 2024
1 parent 2ed3468 commit 0e0b182
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/projects/ProposalTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const proposals = ref();
const expandedRows = ref({});
const dataRowUnixCols = ["created_at", "updated_at"];
const expandRowEntries = ["project_id", "node_id"];
const expandRowEntries = [];
const approvalStatuses = Object.values(ApprovalStatus);
Expand Down Expand Up @@ -90,7 +90,7 @@ const updateFilters = (filterText: string) => {
@clearFilters="resetFilters"
@updateSearch="updateFilters"
/>
<div class="expand-buttons">
<div class="expand-buttons" v-if="expandRowEntries.length">
<ExpandRowButtons
:rows="proposals"
:uniqueId="'id'"
Expand All @@ -99,7 +99,7 @@ const updateFilters = (filterText: string) => {
</div>
</div>
</template>
<Column expander style="width: 5rem" />
<Column expander style="width: 5rem" v-if="expandRowEntries.length" />
<Column field="project.name" header="Name" :sortable="true"></Column>
<Column field="node.name" header="Node" :sortable="true"></Column>
<Column
Expand Down

0 comments on commit 0e0b182

Please sign in to comment.