File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed
ui/packages/platform/src/components Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export const Footer = () => {
59
59
60
60
return (
61
61
< div className = { classes . footer } >
62
- < div className = { classes . footerCopyrightItem } > 2021 © Postgres.ai</ div >
62
+ < div className = { classes . footerCopyrightItem } > { new Date ( ) . getFullYear ( ) } © Postgres.ai</ div >
63
63
< div className = { classes . footerItem } >
64
64
< Link href = { settings . rootUrl + '/docs' } target = "_blank" >
65
65
Documentation
@@ -85,12 +85,9 @@ export const Footer = () => {
85
85
</ div >
86
86
< div className = { classes . footerItemSeparator } > |</ div >
87
87
< div className = { classes . footerItem } >
88
- < span
89
- onClick = { ( ) => window . Intercom && window . Intercom ( 'show' ) }
90
- style = { { cursor : 'pointer' } }
91
- >
88
+ < Link href = { settings . rootUrl + '/contact' } target = "_blank" >
92
89
Ask support
93
- </ span >
90
+ </ Link >
94
91
</ div >
95
92
</ div >
96
93
)
Original file line number Diff line number Diff line change @@ -954,16 +954,17 @@ function SupportMenu(props) {
954
954
</ a >
955
955
</ ListItem >
956
956
< ListItem button className = { props . classes . bottomFixedMenuItem } >
957
- < span
957
+ < a
958
958
className = { props . classes . menuSectionHeaderLink }
959
- activeClassName = { props . classes . menuSectionHeaderActiveLink }
960
- onClick = { ( ) => window . Intercom && window . Intercom ( 'show' ) }
959
+ activeClassName = { props . classes . menuSectionHeaderLink }
960
+ target = '_blank'
961
+ href = { settings . rootUrl + '/contact' }
961
962
>
962
963
< span className = { props . classes . menuSectionHeaderIcon } >
963
964
{ icons . supportIcon }
964
965
</ span >
965
966
Ask support
966
- </ span >
967
+ </ a >
967
968
</ ListItem >
968
969
</ List >
969
970
) ;
You can’t perform that action at this time.
0 commit comments