mirror of https://gitee.com/bigwinds/arangodb
fixed usage of server short name due api change (#5998)
This commit is contained in:
parent
d18cff77d6
commit
1809b86009
|
@ -1,3 +1,10 @@
|
||||||
|
v3.3.14 (2018-XX-XX)
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
* fixed internal issue #2567: the Web UI was showing the possibility to move a
|
||||||
|
shard from a follower to the current leader
|
||||||
|
|
||||||
|
|
||||||
v3.3.13 (2018-07-25)
|
v3.3.13 (2018-07-25)
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
|
|
@ -214,7 +214,7 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
if (from) {
|
if (from) {
|
||||||
delete obj[leader];
|
delete obj[arangoHelper.getDatabaseShortName(leader)];
|
||||||
}
|
}
|
||||||
|
|
||||||
_.each(obj, function (value) {
|
_.each(obj, function (value) {
|
||||||
|
|
|
@ -25,6 +25,12 @@
|
||||||
margin-bottom: 1px;
|
margin-bottom: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sectionShardContent {
|
||||||
|
.pure-g {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.shardSyncIcons {
|
.shardSyncIcons {
|
||||||
.fa {
|
.fa {
|
||||||
color: $c-warning;
|
color: $c-warning;
|
||||||
|
|
Loading…
Reference in New Issue