Fix material react table theming

This commit is contained in:
Bill Thornton
2025-10-02 17:04:11 -04:00
parent c93c25481d
commit a32b2613ac
9 changed files with 85 additions and 11 deletions
+5
View File
@@ -1,3 +1,6 @@
import Events from 'utils/events';
import { EventType } from 'types/eventType';
import { getDefaultTheme, getThemes as getConfiguredThemes } from './settings/webSettings';
let currentThemeId;
@@ -44,6 +47,8 @@ function setTheme(id) {
// set the meta theme color
document.getElementById('themeColor').content = info.color;
Events.trigger(document, EventType.THEME_CHANGE, [ info.id ]);
});
});
}