Skip to content

Commit

Permalink
workarounds for issues feenkcom#1 and feenkcom#2
Browse files Browse the repository at this point in the history
  • Loading branch information
dalehenrich committed Apr 28, 2022
1 parent bbc0217 commit 9939b37
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ GtRemotePhlowViewedObject >> getViewDeclaration: viewSelector [
{ #category : #'api - accessing' }
GtRemotePhlowViewedObject >> getViewDeclarationForView: aDeclarativeView [

PharoLinkAnswerByValue setByValueOnly.
(Rowan classNamed: 'PharoLinkAnswerByValue') setByValueOnly.
^ aDeclarativeView asDictionaryForExport
]

Expand All @@ -70,7 +70,7 @@ GtRemotePhlowViewedObject >> getViewsDeclarations [
viewDeclarations := (self declarativeViewsBySelector
collect: [ :declarativeView |
self getViewDeclarationForView: declarativeView ]).
PharoLinkAnswerByValue setByValueOnly.
(Rowan classNamed: 'PharoLinkAnswerByValue') setByValueOnly.
^ Dictionary new
at: 'views' put: viewDeclarations asArray;
yourself
Expand Down Expand Up @@ -112,7 +112,7 @@ GtRemotePhlowViewedObject >> phlowDeclarativeViews [
views := object gtDeclarativePhlowViews.
views
detect: [ :each | each title = 'Raw' ]
ifNone: [ views add: (object gtRemoteGtRawFor: GtPhlowView empty) ].
ifNone: [ views add: (object gtRemoteGtRawFor: (Rowan classNamed: 'GtPhlowView') empty) ].

^ views
]

0 comments on commit 9939b37

Please sign in to comment.