mirror of https://gitee.com/bigwinds/arangodb
fixed the graph editing modal, ordering of edge definitions was false (#8225)
* fixed the graph editing modal, ordering of edge definitions was false * changelog
This commit is contained in:
parent
e6ae1e42b1
commit
b04cd607f4
|
@ -1,6 +1,7 @@
|
|||
devel
|
||||
-----
|
||||
|
||||
* fixed a display issues when editing a graph within the web ui
|
||||
|
||||
* fixed some escaping issues within the web ui.
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* jshint unused: false */
|
||||
/* global $, window, navigator, _, arangoHelper */
|
||||
/* global $, window, _, arangoHelper */
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global window, frontendConfig, exports, Backbone, _, $, templateEngine, arangoHelper, Joi */
|
||||
/* global window, frontendConfig, Backbone, _, $, templateEngine, arangoHelper, Joi */
|
||||
|
||||
(function () {
|
||||
'use strict';
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global Backbone, $, window, arangoHelper, moment, nv, d3, prettyBytes */
|
||||
/* global document, console, frontendConfig, Dygraph, _,templateEngine */
|
||||
/* global document, frontendConfig, Dygraph, _,templateEngine */
|
||||
|
||||
(function () {
|
||||
'use strict';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global window, document, Backbone, $, arangoHelper, templateEngine, Joi */
|
||||
/* global window, Backbone, $, arangoHelper, templateEngine, Joi */
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global Backbone, $, _, window, templateEngine, arangoHelper, GraphViewerUI, require, Joi, frontendConfig */
|
||||
/* global Backbone, $, _, window, templateEngine, arangoHelper, GraphViewerUI, Joi, frontendConfig */
|
||||
|
||||
(function () {
|
||||
'use strict';
|
||||
|
@ -827,9 +827,7 @@
|
|||
);
|
||||
}
|
||||
|
||||
edgeDefinitions.forEach(
|
||||
function (edgeDefinition) {
|
||||
if (frontendConfig.isEnterprise === true && frontendConfig.isCluster) {
|
||||
if (frontendConfig.isEnterprise === true && frontendConfig.isCluster && !graph) {
|
||||
tableContent.push(
|
||||
window.modalView.createTextEntry(
|
||||
'new-numberOfShards',
|
||||
|
@ -919,6 +917,8 @@
|
|||
);
|
||||
}
|
||||
|
||||
edgeDefinitions.forEach(
|
||||
function (edgeDefinition) {
|
||||
if (self.counter === 0) {
|
||||
if (edgeDefinition.collection) {
|
||||
self.removedECollList.push(edgeDefinition.collection);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global Backbone, location, document, _, arangoHelper, window, setTimeout, $, templateEngine, frontendConfig */
|
||||
/* global Backbone, location, document, _, arangoHelper, window, $, templateEngine, frontendConfig */
|
||||
|
||||
(function () {
|
||||
'use strict';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global Backbone, $, setTimeout, window, arangoHelper, templateEngine */
|
||||
/* global Backbone, $, window, arangoHelper, templateEngine */
|
||||
|
||||
(function () {
|
||||
'use strict';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global Backbone, $, L, setTimeout, sessionStorage, ace, Storage, window, _, console, btoa */
|
||||
/* global Backbone, $, L, setTimeout, sessionStorage, ace, Storage, window, _, btoa */
|
||||
/* global frontendConfig, _, arangoHelper, numeral, templateEngine, Joi */
|
||||
|
||||
(function () {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global Backbone, $, window, setTimeout, _ */
|
||||
/* global Backbone, $, window, _ */
|
||||
/* global arangoHelper, templateEngine */
|
||||
|
||||
(function () {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* jshint browser: true */
|
||||
/* jshint unused: false */
|
||||
/* global frontendConfig, window, document, Backbone, $, arangoHelper, templateEngine, Joi */
|
||||
/* global frontendConfig, window, Backbone, $, arangoHelper, templateEngine, Joi */
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
|
|
Loading…
Reference in New Issue