Node tests are now more customizeable

This commit is contained in:
barsdeveloper
2023-04-01 22:32:22 +02:00
parent 82aaf5a9cb
commit 5de6952c48
5 changed files with 23 additions and 10 deletions

4
dist/ueblueprint.js vendored
View File

@@ -2124,6 +2124,9 @@ class PinEntity extends IEntity {
getDisplayName() {
let matchResult = null;
if (this.PinFriendlyName) {
return Utility.formatStringName(this.PinFriendlyName.toString())
}
if (
this.PinToolTip
// Match up until the first \n excluded or last character
@@ -7002,7 +7005,6 @@ class MinimalPinTemplate extends PinTemplate {
/**
* @typedef {import("../../element/PinElement").PinElementConstructor} PinElementConstructor
* @typedef {import("lit").PropertyValues} PropertyValues
* @typedef {import ("../../element/NodeElement.js").default} NodeElement
*/
class EventNodeTemplate extends NodeTemplate {

File diff suppressed because one or more lines are too long