mirror of https://github.com/stashapp/stash.git
Fix List filter styles, fix freeones spam (#1853)
* Fix List filter styles, fix freeones spam
This commit is contained in:
parent
39fdde273d
commit
5ec70ac3e0
|
@ -46,7 +46,7 @@ xPathScrapers:
|
|||
- regex: \sBio\s*$
|
||||
with: ""
|
||||
URL: //link[@rel="alternate" and @hreflang="x-default"]/@href
|
||||
Twitter: //a[contains(@href,'twitter.com/')]/@href
|
||||
Twitter: //a[not(starts-with(@href,'https://twitter.com/FreeOnes'))][contains(@href,'twitter.com/')]/@href
|
||||
Instagram: //a[contains(@href,'instagram.com/')]/@href
|
||||
Birthdate:
|
||||
selector: //span[contains(text(),'Born On')]
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
* Optimised scanning process. ([#1816](https://github.com/stashapp/stash/pull/1816))
|
||||
|
||||
### 🐛 Bug fixes
|
||||
* Fix Twitter value defaulting to freeones in built-in Freeones scraper. ([#1853](https://github.com/stashapp/stash/pull/1853))
|
||||
* Fix colour codes not outputting correctly when logging to file on Windows. ([#1846](https://github.com/stashapp/stash/pull/1846))
|
||||
* Sort directory listings using case sensitive collation. ([#1823](https://github.com/stashapp/stash/pull/1823))
|
||||
* Fix auto-tag logic for names which have single-letter words. ([#1817](https://github.com/stashapp/stash/pull/1817))
|
||||
|
|
|
@ -240,11 +240,13 @@ export const ListFilter: React.FC<IListFilterProps> = ({
|
|||
</div>
|
||||
|
||||
<Dropdown as={ButtonGroup} className="mr-2 mb-1">
|
||||
<Dropdown.Toggle variant="secondary">
|
||||
{currentSortBy
|
||||
? intl.formatMessage({ id: currentSortBy.messageID })
|
||||
: ""}
|
||||
</Dropdown.Toggle>
|
||||
<InputGroup.Prepend>
|
||||
<Dropdown.Toggle variant="secondary">
|
||||
{currentSortBy
|
||||
? intl.formatMessage({ id: currentSortBy.messageID })
|
||||
: ""}
|
||||
</Dropdown.Toggle>
|
||||
</InputGroup.Prepend>
|
||||
<Dropdown.Menu className="bg-secondary text-white">
|
||||
{renderSortByOptions()}
|
||||
</Dropdown.Menu>
|
||||
|
|
|
@ -208,3 +208,10 @@ button.collapse-button.btn-primary:not(:disabled):not(.disabled):active {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.input-group-prepend {
|
||||
.btn {
|
||||
border-bottom-right-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue