Skip to content

Commit 9143c5e

Browse files
authored
Hotfix for 25.7.2 Docsbot and crop toolbar (#21756)
* Apply DocsBot fix from #21755 * Apply photo cropped toolbar fix from #21754
1 parent d19e9dd commit 9143c5e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

WordPress/src/jetpack/assets/support_chat_widget.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
location.search.substr(1).split`&`.reduce((qd, item) => {
6060
let [k, v] = item.split`=`;
6161
v = v && decodeURIComponent(v);
62-
(qd[k] = qd[k] || []).push(v);
62+
qd[k] = v;
6363
return qd
6464
}, {}) :
6565
{}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<resources>
4+
<style name="Base.ImageEditorTheme" parent="Theme.MaterialComponents.NoActionBar.Bridge">
5+
<item name="android:windowFullscreen">true</item>
6+
</style>
7+
</resources>

0 commit comments

Comments
 (0)