Skip to content

Commit

Permalink
Merge pull request #1224 from moosetechnology/1202-Error-in-displayin…
Browse files Browse the repository at this point in the history
…g-package-names

fix #1202
  • Loading branch information
NicolasAnquetil authored Oct 27, 2024
2 parents 239b43a + 6d75225 commit c470fd8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/MooseIDE-NewTools/MiMetaNavigationBrowser.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ MiMetaNavigationBrowser >> initializePresenters [
"navigation"
navigation := self newTreeTable.
navigation isResizable: true.

items := self filterEmptyValues: (self itemsFor: self model).
entitiesColumn := SpStringTableColumn new
evaluated: [ :el | self printEntry: el ];
Expand Down Expand Up @@ -178,7 +179,7 @@ MiMetaNavigationBrowser >> printEntry: anAssociation [
s << anAssociation key.
(anAssociation value isBlock not and: [
anAssociation value mooseName ~= anAssociation key ]) ifFalse: [
^ self ].
^ s contents ].
s << ': '.
s << anAssociation value mooseName ]
]
Expand Down

0 comments on commit c470fd8

Please sign in to comment.