1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-08-24 17:49:28 +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

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; }
}
}
);