mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
added patch to fix left footer with html links
This commit is contained in:
parent
ac48f31e00
commit
e50861841f
2 changed files with 16 additions and 0 deletions
|
@ -4,3 +4,7 @@ FROM sharelatex/sharelatex:2.4.1
|
|||
# Patch: Fixes anonymous read/write sharing
|
||||
COPY anonymous-metadata.patch ${baseDir}
|
||||
RUN cd ${baseDir} && patch -p0 < anonymous-metadata.patch
|
||||
|
||||
# Patch: Fixes left footer with html text
|
||||
COPY left-footer-skip-translation.patch ${baseDir}
|
||||
RUN cd ${baseDir} && patch -p0 < left-footer-skip-translation.patch
|
||||
|
|
12
server-ce/hotfix/2.4.2/left-footer-skip-translation.patch
Normal file
12
server-ce/hotfix/2.4.2/left-footer-skip-translation.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
--- /var/www/sharelatex/web/app/views/layout/footer.pug
|
||||
+++ /var/www/sharelatex/web/app/app/views/layout/footer.pug
|
||||
@@ -32,7 +32,7 @@ footer.site-footer
|
||||
if item.url
|
||||
a(href=item.url, class=item.class) !{translate(item.text)}
|
||||
else
|
||||
- | !{translate(item.text)}
|
||||
+ | !{item.text}
|
||||
|
||||
ul.col-md-3.text-right
|
||||
|
Loading…
Reference in a new issue