From 068ef6d6d5f2f74055ba4977b9bafcddb01c45db Mon Sep 17 00:00:00 2001 From: Excellencedev Date: Sat, 17 Jan 2026 13:38:11 +0100 Subject: [PATCH] lints --- web_src/js/features/repo-settings-actions.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/web_src/js/features/repo-settings-actions.ts b/web_src/js/features/repo-settings-actions.ts index 5a1a0f38ec..3383a4cf05 100644 --- a/web_src/js/features/repo-settings-actions.ts +++ b/web_src/js/features/repo-settings-actions.ts @@ -27,7 +27,7 @@ export function initActionsPermissionsTable(): void { } if (tableSection) { - tableSection.style.opacity = shouldDisable ? '0.5' : '1'; + tableSection.style.opacity = shouldDisable ? '0.5' : '1'; } // Disable table if layout is disabled OR max permissions not enabled @@ -41,14 +41,14 @@ export function initActionsPermissionsTable(): void { } permTable.style.display = isMaxEnabled ? '' : 'none'; if (shouldDisable) { - permTable.style.opacity = '0.5'; - // If disabled, we might want to hide it or just show disabled state? - // If following Org config, the Org might have max permissions set. - // But here we are configuring the REPO overrides. - // If not overriding, we show nothing (or disabled state). - // Current logic dims everything. + permTable.style.opacity = '0.5'; + // If disabled, we might want to hide it or just show disabled state? + // If following Org config, the Org might have max permissions set. + // But here we are configuring the REPO overrides. + // If not overriding, we show nothing (or disabled state). + // Current logic dims everything. } else { - permTable.style.opacity = '1'; + permTable.style.opacity = '1'; } } }