From 6984ddfe660d4ae80d1919c66c848dd433b213b5 Mon Sep 17 00:00:00 2001 From: Steven Costiou Date: Tue, 29 Aug 2023 14:21:01 +0200 Subject: [PATCH] Fixing BlElement id api call. --- src/Pyramid-Bloc/PyramidTreePlugin.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pyramid-Bloc/PyramidTreePlugin.class.st b/src/Pyramid-Bloc/PyramidTreePlugin.class.st index f5c13e56..a74e61b1 100644 --- a/src/Pyramid-Bloc/PyramidTreePlugin.class.st +++ b/src/Pyramid-Bloc/PyramidTreePlugin.class.st @@ -38,7 +38,7 @@ PyramidTreePlugin class >> columnNameAndType: aPyramidTreePlugin [ of: aBlElement onEditor: aPyramidTreePlugin editor ]; evaluated: [ :aBlElement | - aBlElement id isNoId + aBlElement elementId isNoId ifTrue: [ '' ] ifFalse: [ aBlElement id asSymbol ] ]; displayColor: [ :aBlElement | Smalltalk ui theme textColor ];