-
![]()
+
@@ -94,7 +94,7 @@ export default class EIconSelector extends CustomDialog {
refreshing = false;
- searchUpdateDebounce = _.debounce(() => this.runSearch(), 200, { maxWait: 1000 });
+ searchUpdateDebounce = _.debounce(() => this.runSearch(), 350, { maxWait: 2000 });
@Hook('mounted')
async mounted(): Promise {
diff --git a/bbcode/Editor.vue b/bbcode/Editor.vue
index eae9198..bf61545 100644
--- a/bbcode/Editor.vue
+++ b/bbcode/Editor.vue
@@ -187,7 +187,7 @@
const colorButtonIndex = _.findIndex(buttons, (b) => b.tag === 'color');
if (this.colorPopupVisible) {
- const colorButton = _.cloneDeep(buttons[colorButtonIndex]);
+ const colorButton = _.clone(buttons[colorButtonIndex]);
colorButton.outerClass = 'toggled';
buttons[colorButtonIndex] = colorButton;