Skip to content

Commit 264781e

Browse files
authored
Merge pull request #861 from ercole-io/fix-bugs
Fix pdb names on databases list page
2 parents 81feaed + 2df0fe5 commit 264781e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/modules/databases/oracle/oracle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const getters = {
2424
let pdbs = []
2525
_.map(val.pdbs, (pdb) => {
2626
if (pdb !== '') {
27-
pdbs.push(pdb)
27+
pdbs.push(pdb.name)
2828
}
2929
})
3030

0 commit comments

Comments
 (0)