Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Akylas/app-tools
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c8f816dd2f30b3357082bee1904944b4d6bb3346
Choose a base ref
...
head repository: Akylas/app-tools
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f021f4f3e3d5654119fe0f6262e838d8c01acdf8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Dec 17, 2024

  1. chore: cleanup

    farfromrefug committed Dec 17, 2024
    Copy the full SHA
    b2c65bd View commit details
  2. Copy the full SHA
    f021f4f View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 app/utils/index.common.ts
2 changes: 1 addition & 1 deletion app/utils/index.common.ts
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ export function groupByArray<T>(items: T[], keyGetter: (item: T) => string[]) {
export function setCustomCssRootClass(className, oldClassName?) {
const rootView = Application.getRootView();
const rootModalViews = rootView._getRootModalViews();
DEV_LOG && console.log('setCustomCssRootClass', rootView, className, oldClassName);
// DEV_LOG && console.log('setCustomCssRootClass', rootView, className, oldClassName);
function addCssClass(rootView, cssClass) {
cssClass = `${CSSUtils.CLASS_PREFIX}${cssClass}`;
CSSUtils.pushToSystemCssClasses(cssClass);