Merge pull request #2636 from pixelfed/staging

Staging
pull/2642/head
daniel 5 years ago committed by GitHub
commit 57ee2734ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,6 +36,7 @@
- Updated ComposeModal, add processing step disabled by default. ([e6e76e80](https://github.com/pixelfed/pixelfed/commit/e6e76e80))
- Updated DiscoverComponent, allow unathenicated if enabled. ([a1059a6e](https://github.com/pixelfed/pixelfed/commit/a1059a6e))
- Updated components, improve content warnings. ([a9e98965](https://github.com/pixelfed/pixelfed/commit/a9e98965))
- Updated ComposeModal, prevent tagging empty users. Fixes #2633. ([ceae664c](https://github.com/pixelfed/pixelfed/commit/ceae664c))
- ([](https://github.com/pixelfed/pixelfed/commit/))
## [v0.10.10 (2021-01-28)](https://github.com/pixelfed/pixelfed/compare/v0.10.9...v0.10.10)

File diff suppressed because one or more lines are too long

@ -11,7 +11,7 @@
"/js/collectioncompose.js": "/js/collectioncompose.js?id=c6a07cb79dd7d6c7b8a0",
"/js/collections.js": "/js/collections.js?id=6f64a9032085ebac28b3",
"/js/components.js": "/js/components.js?id=6a067b7270581d1039cb",
"/js/compose.js": "/js/compose.js?id=6329ab4d5b66c0c25f0d",
"/js/compose.js": "/js/compose.js?id=b896ae7df355994d1f40",
"/js/compose-classic.js": "/js/compose-classic.js?id=283f19c895f4118a2a8b",
"/js/developers.js": "/js/developers.js?id=f75deca5ccf47d43eb07",
"/js/direct.js": "/js/direct.js?id=e1e4a830bfedc1870db1",

@ -1177,7 +1177,9 @@ export default {
q: input
}
}).then(res => {
//return res.data;
if(!res.data.length) {
return;
}
return res.data.filter(d => {
return self.taggedUsernames.filter(r => {
return r.id == d.id;

Loading…
Cancel
Save