Browse Source

Merge pull request #5339 from pixelfed/staging

Staging
daniel 8 tháng trước cách đây
mục cha
commit
d7bcce1022

+ 2 - 0
CHANGELOG.md

@@ -7,6 +7,7 @@
 - Authorize Interaction support (for handling remote interactions) ([4ca7c6c3](https://github.com/pixelfed/pixelfed/commit/4ca7c6c3))
 - Contact Form Admin Responses ([52cc6090](https://github.com/pixelfed/pixelfed/commit/52cc6090))
 - Profile Carousels ([8af77a3f](https://github.com/pixelfed/pixelfed/commit/8af77a3f))
+- Moderated Profiles ([39f16321](https://github.com/pixelfed/pixelfed/commit/39f16321))
 
 ### Federation
 - Add ActiveSharedInboxService, for efficient sharedInbox caching ([1a6a3397](https://github.com/pixelfed/pixelfed/commit/1a6a3397))
@@ -34,6 +35,7 @@
 - Update ReblogService, fix cache sync issues ([3de8ceca](https://github.com/pixelfed/pixelfed/commit/3de8ceca))
 - Update config, allow Beagle discover service to be disabled ([de4ce3c8](https://github.com/pixelfed/pixelfed/commit/de4ce3c8))
 - Update ApiV1Dot1Controller, allow upto 5 similar push tokens ([7820b506](https://github.com/pixelfed/pixelfed/commit/7820b506))
+- Update AdminReports, add missing click handler. Fixes #5332 ([fe48b8ad](https://github.com/pixelfed/pixelfed/commit/fe48b8ad))
 -  ([](https://github.com/pixelfed/pixelfed/commit/))
 
 ## [v0.12.3 (2024-07-01)](https://github.com/pixelfed/pixelfed/compare/v0.12.2...v0.12.3)

BIN
public/js/admin.js


BIN
public/js/daci.chunk.5bb69fda8fdedc47.js → public/js/daci.chunk.54a46f9d3a646bd2.js


BIN
public/js/discover~findfriends.chunk.2392a288a9031530.js → public/js/discover~findfriends.chunk.e4652b4bbc15fb50.js


BIN
public/js/discover~memories.chunk.398b63b5473c6be6.js → public/js/discover~memories.chunk.71f40101e955ab62.js


BIN
public/js/discover~myhashtags.chunk.29b97f80a1338877.js → public/js/discover~myhashtags.chunk.107f22c29aa04b5b.js


BIN
public/js/discover~serverfeed.chunk.d729660f46f7f530.js → public/js/discover~serverfeed.chunk.d7c80d1f408ae4b8.js


BIN
public/js/discover~settings.chunk.6f4b9b6a6ef5131a.js → public/js/discover~settings.chunk.7576e6cfccedc316.js


BIN
public/js/home.chunk.491ce6f986e08bb3.js → public/js/home.chunk.b4d8cc40a68920c1.js


+ 0 - 0
public/js/home.chunk.491ce6f986e08bb3.js.LICENSE.txt → public/js/home.chunk.b4d8cc40a68920c1.js.LICENSE.txt


BIN
public/js/landing.js


BIN
public/js/manifest.js


BIN
public/js/post.chunk.13919bcfbfc2d438.js → public/js/post.chunk.75dacb90af9d0e71.js


+ 0 - 0
public/js/post.chunk.13919bcfbfc2d438.js.LICENSE.txt → public/js/post.chunk.75dacb90af9d0e71.js.LICENSE.txt


BIN
public/js/profile.chunk.164b255884ed6d1c.js → public/js/profile.chunk.5c727a8a961cd959.js


BIN
public/mix-manifest.json


+ 1 - 1
resources/assets/components/admin/AdminReports.vue

@@ -384,7 +384,7 @@
                                 <p class="small mb-0 text-wrap" style="max-width: 300px;word-break: break-all;">{{ report.message && report.message.length > 120 ? report.message.slice(0, 120) + '...' : report.message }}</p>
                             </td>
                             <td class="font-weight-bold align-middle">{{ timeAgo(report.created_at) }}</td>
-                            <td class="align-middle"><a href="#" class="btn btn-primary btn-sm">View</a></td>
+                            <td class="align-middle"><a href="#" class="btn btn-primary btn-sm" @click.prevent="showRemoteReport(report)">View</a></td>
                         </tr>
                     </tbody>
                 </table>