Merge "fix: Add filter status in volume"

This commit is contained in:
Zuul 2021-08-30 07:00:41 +00:00 committed by Gerrit Code Review
commit 1cece9b384

View File

@ -189,7 +189,7 @@ export const volumeFilters = [
{
label: t('Status'),
name: 'status',
options: ['available', 'in-use', 'error'].map((it) => ({
options: ['available', 'in-use', 'error', 'maintenance'].map((it) => ({
key: it,
label: volumeStatus[it],
})),