diff --git a/Iceberg-TipUI/IceTipEntityModel.class.st b/Iceberg-TipUI/IceTipEntityModel.class.st index 7c9c4c177d..bcb03bed95 100644 --- a/Iceberg-TipUI/IceTipEntityModel.class.st +++ b/Iceberg-TipUI/IceTipEntityModel.class.st @@ -80,6 +80,12 @@ IceTipEntityModel >> isModelOf: anObject [ ^ self entity = anObject ] +{ #category : 'accessing' } +IceTipEntityModel >> name [ + + ^ self entity name +] + { #category : 'tagging' } IceTipEntityModel >> newCreateTagAction: aString [ diff --git a/Iceberg-TipUI/IceTipResetBranchToThisCommitCommand.class.st b/Iceberg-TipUI/IceTipResetBranchToThisCommitCommand.class.st index fb5aa6da38..3eb142b8bf 100644 --- a/Iceberg-TipUI/IceTipResetBranchToThisCommitCommand.class.st +++ b/Iceberg-TipUI/IceTipResetBranchToThisCommitCommand.class.st @@ -20,7 +20,7 @@ IceTipResetBranchToThisCommitCommand >> defaultNameFromContext [ | shortId branchName | shortId := self selectedCommitish ifNotNil: [ :commitish | commitish shortId ] ifNil: ['']. - branchName := self selectedBranch ifNotNil: [:branch | branch branchName] ifNil: [ '' ]. + branchName := self selectedBranch ifNotNil: [:branch | branch name ] ifNil: [ '' ]. ^ 'Reset ', branchName, ' to commit ', shortId ] diff --git a/Iceberg-TipUI/IceTipTagModel.class.st b/Iceberg-TipUI/IceTipTagModel.class.st index cc72af64a0..6d978a09d2 100644 --- a/Iceberg-TipUI/IceTipTagModel.class.st +++ b/Iceberg-TipUI/IceTipTagModel.class.st @@ -36,12 +36,6 @@ IceTipTagModel >> description [ ^ self entity name ] -{ #category : 'accessing' } -IceTipTagModel >> name [ - - ^ self entity name -] - { #category : 'actions' } IceTipTagModel >> previewCheckout [ "this will open a 'checkout browser' that will allow user to validate the changes before