Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/e9692d5b9cc4d27092c69bb8c8117dff4724a6d5 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from uzegonemad/hotfix/fix-long-path-label

Fixed: Add wrapping to fix long paths in labels
pull/6/head
Mark McDowall 10 years ago
commit e9692d5b9c

@ -433,7 +433,10 @@
.label {
display : inline-block;
margin-bottom : 2px;
padding : 4px 6px 3px 6px
padding : 4px 6px 3px 6px;
max-width : 100%;
white-space : normal;
word-wrap : break-word;
}
}

Loading…
Cancel
Save