Image listing by visibility fix

The image filtering by visibility is using the incorrect values
for the various filter types.  See this reference for background:
https://wiki.openstack.org/wiki/Glance-v2-community-image-visibility-design

Change-Id: Ibc33bfd771ba6ba1cbbcbf342f4ae5f76f730e8b
Closes-Bug: #1634205
This commit is contained in:
eric 2016-10-17 11:55:16 -06:00
parent 7869745063
commit 70d2059f58
1 changed files with 3 additions and 3 deletions

View File

@ -143,9 +143,9 @@
isServer: false,
singleton: true,
options: [
{label: gettext('Public'), key: gettext('Public')},
{label: gettext('Private'), key: gettext('Private')},
{label: gettext('Shared With Project'), key: gettext('Shared With Project')},
{label: gettext('Public'), key: 'public'},
{label: gettext('Private'), key: 'private'},
{label: gettext('Shared With Project'), key: 'shared'},
{label: gettext('Unknown'), key: 'unknown'}
]
})