Fix admin routing and Playwright smoke checks
TaxBaik CI/CD / build-and-deploy (push) Successful in 5m22s

This commit is contained in:
2026-07-04 23:07:16 +09:00
parent fd5178b118
commit 7002d50a4e
30 changed files with 95 additions and 59 deletions
@@ -29,10 +29,9 @@
<button type="submit"
id="admin-login-submit"
disabled="@(!isReady)"
class="mud-button-root mud-button mud-button-filled mud-button-filled-primary mud-elevation-0"
style="width: 100%; min-height: 52px; border: 0; border-radius: 4px; color: white;">
<span>@(isReady ? "로그인" : "준비 중...")</span>
<span>로그인</span>
</button>
</form>
</MudPaper>
@@ -41,7 +40,6 @@
@code {
private string rememberedUsername = "";
private bool isRememberChecked = false;
private bool isReady;
private const string RememberedUsernameKey = "admin-remembered-username";
private const string RememberedCheckboxKey = "admin-remember-checkbox";
@@ -73,11 +71,6 @@
{
// Login UI must remain visible even if JS binding fails.
}
finally
{
isReady = true;
StateHasChanged();
}
}
}
}