1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

M #~: Fix filter DS datatable when download app (#4815)

This commit is contained in:
Sergio Betanzos 2020-05-26 15:22:30 +02:00 committed by GitHub
parent 7101d2f331
commit 21c62e5dc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,7 @@ define(function(require) {
formPanelId + "datastoresTable", {
"select": true,
"selectOptions": {
"filter_fn": function(ds) { return ds.TYPE == DataStore.TYPES.IMAGE_DS; }
"filter_fn": function(ds) { return ds.TYPE != DataStore.TYPES.SYSTEM_DS; }
}
}
);