@@ -92,25 +92,29 @@ export default class IncorporationSearchResultView extends Vue {
9292 generatePasscodeDialog: GeneratePasscodeView
9393 }
9494
95- get actions (): object [] {
95+ get actions (): any [] {
9696 if (this .isThereAnAffiliatedAccount ) {
9797 return [
98- { title: ' Manage Business' ,
98+ {
99+ title: ' Manage Business' ,
99100 icon: ' mdi-view-dashboard' ,
100101 event: this .manageBusinessEvent
101102 },
102- { title: ' Manage Account' ,
103+ {
104+ title: ' Manage Account' ,
103105 icon: ' mdi-domain' ,
104106 event: this .manageAccountEvent
105107 }
106108 ]
107109 } else {
108110 return [
109- { title: ' Manage Business' ,
111+ {
112+ title: ' Manage Business' ,
110113 icon: ' mdi-view-dashboard' ,
111114 event: this .manageBusinessEvent
112115 },
113- { title: ' Generate Passcode' ,
116+ {
117+ title: ' Generate Passcode' ,
114118 icon: ' mdi-lock-outline' ,
115119 event: this .generatePasscodeEvent
116120 }
@@ -186,7 +190,7 @@ export default class IncorporationSearchResultView extends Vue {
186190 const businessIdentifier = this .currentBusiness .businessIdentifier
187191 const filingId = this .filingID
188192
189- let url = ` ${ConfigHelper .getBusinessURL ()}${businessIdentifier } `
193+ let url = ` ${ConfigHelper .getBusinessDashURL ()}${businessIdentifier } `
190194
191195 if (filingId ) {
192196 url += ` ?filing_id=${filingId } `
0 commit comments