update footer props with ticketnumber

This commit is contained in:
2024-04-09 15:03:33 +01:00
parent f2e143ab1f
commit a836c667b8
3 changed files with 9 additions and 3 deletions
+4 -1
View File
@@ -69,7 +69,10 @@ const CaseHome = (props) => {
showLoginCheck={props.currentView.showLogin} showLoginCheck={props.currentView.showLogin}
/> />
</div> </div>
<Footer footerLinks={footerLinks} /> <Footer
footerLinks={footerLinks}
ticketnumber={props.currentView.caseReference.ticketnumber}
/>
</div> </div>
</div> </div>
); );
+1 -1
View File
@@ -37,7 +37,7 @@ const Home = (props) => {
<Breadcrumbs /> <Breadcrumbs />
<Main props={props} /> <Main props={props} />
</div> </div>
<Footer footerLinks={footerLinks} /> <Footer footerLinks={footerLinks} ticketnumber={props} />
</div> </div>
</div> </div>
); );
+4 -1
View File
@@ -84,7 +84,10 @@ const Home = (props) => {
currentView={props.currentView} currentView={props.currentView}
/> />
</div> </div>
<Footer footerLinks={footerLinks} /> <Footer
footerLinks={footerLinks}
ticketnumber={props.currentView.caseReference.ticketnumber}
/>
</div> </div>
<TimeOut /> <TimeOut />
</div> </div>