Closed brucetony closed 2 months ago
To better highlight and differentiate the various build and run statuses, they should be converted to use the <Tag> element and to be filterable e.g.:
<Tag>
<Column header="Status" field="status" :filterMenuStyle="{ width: '14rem' }" style="min-width: 12rem"> <template #body="{ data }"> <Tag :value="data.run_status" :severity="getSeverity(data.status)" /> </template> <template #filter="{ filterModel }"> <Dropdown v-model="filterModel.value" :options="statuses" placeholder="Select One" class="p-column-filter" showClear> <template #option="slotProps"> <Tag :value="slotProps.option" :severity="getSeverity(slotProps.option)" /> </template> </Dropdown> </template> </Column>
This should also include sorting by a specific Status rather than just ascending/descending
To better highlight and differentiate the various build and run statuses, they should be converted to use the
<Tag>
element and to be filterable e.g.: