bug fix
This commit is contained in:
parent
b74000bde1
commit
e761119454
|
@ -140,18 +140,18 @@
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||||
>
|
>
|
||||||
<!-- 번호 -->
|
<!-- 번호 -->
|
||||||
<div class="hidden sm:block truncate">
|
<div class="hidden lg:block truncate">
|
||||||
{{ i + 1 }}
|
{{ i + 1 }}
|
||||||
</div>
|
</div>
|
||||||
<!-- 등급 || 아이디 -->
|
<!-- 등급 || 아이디 -->
|
||||||
<div class="hidden sm:block truncate">
|
<div class="hidden lg:block truncate">
|
||||||
{{ admin.rank }}
|
{{ admin.rank }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ admin.signinId }}
|
{{ admin.signinId }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- IP || Domain-->
|
<!-- IP || Domain-->
|
||||||
<div class="hidden sm:block truncate">
|
<div class="hidden lg:block truncate">
|
||||||
{{ admin.ip }}
|
{{ admin.ip }}
|
||||||
<hr style="margin: 7px 0px" />
|
<hr style="margin: 7px 0px" />
|
||||||
{{ admin.domain }}
|
{{ admin.domain }}
|
||||||
|
@ -164,36 +164,27 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 로그인차단/해제 상태 -->
|
<!-- 로그인차단/해제 상태 -->
|
||||||
<div class="hidden sm:block truncate">
|
<div class="hidden lg:block truncate">
|
||||||
{{ !!admin.isSigninBlock ? "로그인 차단중" : "정상" }}
|
{{ !!admin.isSigninBlock ? "로그인 차단중" : "정상" }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- IP차단/해제-->
|
<!-- IP차단/해제-->
|
||||||
<div class="hidden sm:block truncate">
|
<div class="hidden lg:block truncate">
|
||||||
<button
|
<button
|
||||||
fxFlex
|
|
||||||
mat-flat-button
|
mat-flat-button
|
||||||
style="position: fixed; margin-top: 4px"
|
class="bet-mat-small-8"
|
||||||
[color]="'primary'"
|
[color]="'primary'"
|
||||||
>
|
>
|
||||||
<mat-icon
|
|
||||||
[svgIcon]="'heroicons_outline:search'"
|
|
||||||
></mat-icon>
|
|
||||||
<span class="ml-2 mr-1">IP차단</span>
|
<span class="ml-2 mr-1">IP차단</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 회원차단/해제 -->
|
<!-- 회원차단/해제 -->
|
||||||
<div class="hidden sm:block truncate">
|
<div class="hidden lg:block truncate">
|
||||||
<button
|
<button
|
||||||
fxFlex
|
|
||||||
mat-flat-button
|
mat-flat-button
|
||||||
style="position: fixed; margin-top: 4px"
|
class="bet-mat-small-8"
|
||||||
[color]="'primary'"
|
[color]="'primary'"
|
||||||
>
|
>
|
||||||
<mat-icon
|
|
||||||
[svgIcon]="'heroicons_outline:search'"
|
|
||||||
></mat-icon>
|
|
||||||
<span class="ml-2 mr-1">ID블럭</span>
|
<span class="ml-2 mr-1">ID블럭</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user