Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/754237c57b7556d732c508a0e709e4907ac6f472
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
1 deletions
@ -36,12 +36,13 @@ module.exports = Marionette.ItemView.extend({
}
} ,
_viewRender : function ( view ) {
_viewRender : function ( view , element ) {
if ( Config . getValue ( this . storageKey ) !== view . name ) {
Config . setValue ( this . storageKey , view . name ) ;
}
this . _getEvents ( view ) ;
element . find ( '.fc-day-grid-container' ) . css ( 'height' , '' ) ;
} ,
_eventAfterAllRender : function ( ) {
@ -55,6 +56,9 @@ module.exports = Marionette.ItemView.extend({
this . $ ( '.fc-toolbar' ) . before ( titleDiv ) ;
this . $ ( '.fc-center' ) . hide ( ) ;
}
// Remove height from calendar so we don't have another scroll bar
this . $ ( '.fc-day-grid-container' ) . css ( 'height' , '' ) ;
} ,
_eventRender : function ( event , element ) {
@ -14,6 +14,10 @@
overflow: hidden;
}
.fc-scroller {
overflow-y: visible;
}
@media (max-width: @screen-xs-max) {
.fc-button {
padding: 0px 5px;