mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-13 16:42:34 +00:00
fix(console, login): console - ensure permission is available, login - i18n fixes, input borders, lgn-touched script to add class on blur (#3760)
* permission restriction, member, login i18n input borders, secondary text * add touched js
This commit is contained in:
@@ -39,6 +39,7 @@
|
||||
grid-template-columns: 1fr;
|
||||
gap: 1rem;
|
||||
justify-content: space-evenly;
|
||||
padding-bottom: 1rem;
|
||||
|
||||
@media only screen and (min-width: 599px) {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
(addClicked)="openAddMember()"
|
||||
(showDetailClicked)="showDetail()"
|
||||
(refreshClicked)="loadMembers()"
|
||||
[disabled]="false"
|
||||
[disabled]="(['iam.member.write'] | hasRole | async) === false"
|
||||
>
|
||||
</cnsl-contributors>
|
||||
</div>
|
||||
|
||||
@@ -81,7 +81,7 @@ export class InstanceComponent {
|
||||
}),
|
||||
)
|
||||
.then(() => {
|
||||
this.toast.showInfo('IAM.TOAST.MEMBERADDED');
|
||||
this.toast.showInfo('IAM.TOAST.MEMBERADDED', true);
|
||||
setTimeout(() => {
|
||||
this.loadMembers();
|
||||
}, 1000);
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
(addClicked)="openAddMember()"
|
||||
(showDetailClicked)="showDetail()"
|
||||
(refreshClicked)="loadMembers()"
|
||||
[disabled]="false"
|
||||
[disabled]="(['org.member.write'] | hasRole | async) === false"
|
||||
>
|
||||
</cnsl-contributors>
|
||||
|
||||
|
||||
@@ -21,6 +21,10 @@
|
||||
border-bottom: 1px solid #ffffff20;
|
||||
flex-wrap: wrap;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.left {
|
||||
.label {
|
||||
font-size: 13px;
|
||||
|
||||
Reference in New Issue
Block a user