Commit ab9f9731 by kevalbhatt

ATLAS-3858:- [UI] Misaligment happened in Glossaries when added term with large name

parent b5c4a56f
......@@ -497,4 +497,14 @@ div.columnmanager-dropdown-container {
.ui-pnotify-text {
word-break: break-word;
}
}
.jstree-wholerow-ul {
width: 100%;
.jstree-anchor {
width: calc(100% - 50px);
overflow: hidden;
text-overflow: ellipsis;
}
}
\ No newline at end of file
......@@ -782,12 +782,15 @@ define(['require',
if (that.guid && that.callback) {
that.callback();
} else {
if (model.mutatedEntities && model.mutatedEntities.CREATE && _.isArray(model.mutatedEntities.CREATE) && model.mutatedEntities.CREATE[0] && model.mutatedEntities.CREATE[0].guid) {
Utils.setUrl({
url: '#!/detailPage/' + (model.mutatedEntities.CREATE[0].guid),
mergeBrowserUrl: false,
trigger: true
});
if (model.mutatedEntities) {
var mutatedEntities = model.mutatedEntities.CREATE || model.mutatedEntities.UPDATE;
if (mutatedEntities && _.isArray(mutatedEntities) && mutatedEntities[0] && mutatedEntities[0].guid) {
Utils.setUrl({
url: '#!/detailPage/' + (mutatedEntities[0].guid),
mergeBrowserUrl: false,
trigger: true
});
}
}
}
},
......
......@@ -501,4 +501,14 @@ div.columnmanager-dropdown-container {
.ui-pnotify-text {
word-break: break-word;
}
}
.jstree-wholerow-ul {
width: 100%;
.jstree-anchor {
width: calc(100% - 50px);
overflow: hidden;
text-overflow: ellipsis;
}
}
\ No newline at end of file
......@@ -788,12 +788,15 @@ define(['require',
if (that.searchVent) {
that.searchVent.trigger("Entity:Count:Update");
}
if (model.mutatedEntities && model.mutatedEntities.CREATE && _.isArray(model.mutatedEntities.CREATE) && model.mutatedEntities.CREATE[0] && model.mutatedEntities.CREATE[0].guid) {
Utils.setUrl({
url: '#!/detailPage/' + (model.mutatedEntities.CREATE[0].guid),
mergeBrowserUrl: false,
trigger: true
});
if (model.mutatedEntities) {
var mutatedEntities = model.mutatedEntities.CREATE || model.mutatedEntities.UPDATE;
if (mutatedEntities && _.isArray(mutatedEntities) && mutatedEntities[0] && mutatedEntities[0].guid) {
Utils.setUrl({
url: '#!/detailPage/' + (mutatedEntities[0].guid),
mergeBrowserUrl: false,
trigger: true
});
}
}
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment