mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-5412: UI > Add Secondary Storage > provider dropdown > change option "SMB/cifs" to "SMB/CIFS".
This commit is contained in:
parent
be67f5d17a
commit
fe83dd621b
|
|
@ -14787,7 +14787,7 @@
|
|||
var items = [];
|
||||
items.push({
|
||||
id: "SMB",
|
||||
description: "SMB/cifs"
|
||||
description: "SMB/CIFS"
|
||||
});
|
||||
args.response.success({
|
||||
data: items
|
||||
|
|
@ -16255,7 +16255,7 @@
|
|||
description: 'NFS'
|
||||
}, {
|
||||
id: 'SMB',
|
||||
description: 'SMB/cifs'
|
||||
description: 'SMB/CIFS'
|
||||
}, {
|
||||
id: 'S3',
|
||||
description: 'S3'
|
||||
|
|
|
|||
|
|
@ -1523,7 +1523,7 @@
|
|||
var items = [];
|
||||
items.push({
|
||||
id: "SMB",
|
||||
description: "SMB/cifs"
|
||||
description: "SMB/CIFS"
|
||||
});
|
||||
args.response.success({
|
||||
data: items
|
||||
|
|
@ -1845,7 +1845,7 @@
|
|||
(2) Provider "SMB" which is handled by UI is not returned from "listStorageProviders&type=image"
|
||||
*/
|
||||
storageproviders.push({ id: 'NFS', description: 'NFS'});
|
||||
storageproviders.push({ id: 'SMB', description: 'SMB/cifs'});
|
||||
storageproviders.push({ id: 'SMB', description: 'SMB/CIFS'});
|
||||
storageproviders.push({ id: 'S3', description: 'S3'});
|
||||
storageproviders.push({ id: 'Swift', description: 'Swift'});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue