mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where the user unable to change the background color for a server. Fixes #6178
This commit is contained in:
committed by
Akshay Joshi
parent
9e85fb3de3
commit
85b40ee4f0
@@ -3207,12 +3207,12 @@ define([
|
||||
});
|
||||
}).on('clear', (instance) => {
|
||||
this.applyColor(name, instance, null);
|
||||
}).on('change', (color, instance) => {
|
||||
}).on('change', (color, source, instance) => {
|
||||
this.applyColor(name, instance, color);
|
||||
}).on('show', (color, instance) => {
|
||||
const {palette} = instance.getRoot().palette;
|
||||
palette.focus();
|
||||
}).on('hide', (color, instance) => {
|
||||
}).on('hide', (instance) => {
|
||||
const button = instance.getRoot().button;
|
||||
button.focus();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user