Skip to content

Commit

Permalink
fix: Permission menu occlusion (#1272)
Browse files Browse the repository at this point in the history
* fix: Permission menu occlusion

* fix: Using conflict
  • Loading branch information
wzh425 authored Apr 2, 2024
1 parent 0ec83eb commit cd018cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) MASA Stack All rights reserved.
// Licensed under the Apache License. See LICENSE.txt in the project root for license information.

using Microsoft.AspNetCore.Identity;

namespace Masa.Auth.Service.Admin.Domain.Subjects.Aggregates;

public class PasswordType : Enumeration
Expand Down
1 change: 0 additions & 1 deletion src/Services/Masa.Auth.Service.Admin/_Imports.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Authorization.Policy;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.AspNetCore.Identity;
global using Microsoft.EntityFrameworkCore;
global using Microsoft.EntityFrameworkCore.Design;
global using Microsoft.EntityFrameworkCore.Infrastructure;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</MWindowItem>
<MWindowItem Value="UpdateRoleTabs.Permission.ToString()">
<RoleSelectForRole RoleId=RoleId @bind-Value="Role.ChildrenRoles" Class="mb-6 mt-2" />
<div class="global-nav" style="display: flex;max-height:calc(100vh - 370px);">
<div class="global-nav" style="display: flex;max-height:calc(100vh - 230px);">
<PermissionsConfigure
Roles=Role.ChildrenRoles
HasPreview
Expand Down

0 comments on commit cd018cf

Please sign in to comment.