Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/f124d732a2911abdccb5abc11471efe61cc20f7a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -63,7 +63,7 @@ const RequestList: React.FC = () => {
< tr >
< Table.TD colSpan = { 6 } noPadding >
< nav
className = " bg-gray-700 px-4 py-3 flex items-center justify-between text-white sm:px-6"
className = " flex items-center justify-between px-4 py-3 text-white bg-gray-700 sm:px-6"
aria - label = "Pagination"
>
< div className = "hidden sm:block" >
@ -73,7 +73,7 @@ const RequestList: React.FC = () => {
to :
data . results . length < 10
? pageIndex * 10 + data . results . length
: pageIndex + 1 * 10 ,
: ( pageIndex + 1 ) * 10 ,
total : data.pageInfo.results ,
strong : function strong ( msg ) {
return < span className = "font-medium" > { msg } < / span > ;
@ -81,7 +81,7 @@ const RequestList: React.FC = () => {
} ) }
< / p >
< / div >
< div className = "flex -1 flex justify-start sm:justify-end">
< div className = "flex justify-start flex-1 sm:justify-end">
< span className = "mr-2" >
< Button
disabled = { ! hasPrevPage }