1
0
Fork 0

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:
Heiko 2019-02-27 09:52:55 +01:00 committed by Michael Hackstein
parent e6ae1e42b1
commit b04cd607f4
11 changed files with 101 additions and 100 deletions

View File

@ -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.

View File

@ -1,5 +1,5 @@
/* jshint unused: false */
/* global $, window, navigator, _, arangoHelper */
/* global $, window, _, arangoHelper */
(function () {
'use strict';

View File

@ -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';

View File

@ -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';

View File

@ -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';

View File

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

View File

@ -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';

View File

@ -1,6 +1,6 @@
/* jshint browser: true */
/* jshint unused: false */
/* global Backbone, $, setTimeout, window, arangoHelper, templateEngine */
/* global Backbone, $, window, arangoHelper, templateEngine */
(function () {
'use strict';

View File

@ -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 () {

View File

@ -1,6 +1,6 @@
/* jshint browser: true */
/* jshint unused: false */
/* global Backbone, $, window, setTimeout, _ */
/* global Backbone, $, window, _ */
/* global arangoHelper, templateEngine */
(function () {

View File

@ -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';