web/admin: fix default for policy binding negate
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
		
							
								
								
									
										11
									
								
								web/package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										11
									
								
								web/package-lock.json
									
									
									
										generated
									
									
									
								
							| @ -61,12 +61,13 @@ | ||||
|                 "typescript": "^4.3.2", | ||||
|                 "webcomponent-qr-code": "^1.0.5", | ||||
|                 "yaml": "^1.10.2" | ||||
|             } | ||||
|             }, | ||||
|             "devDependencies": {} | ||||
|         }, | ||||
|         "api": { | ||||
|             "name": "authentik-api", | ||||
|             "version": "0.0.1", | ||||
|             "dependencies": { | ||||
|             "version": "1.0.0", | ||||
|             "devDependencies": { | ||||
|                 "typescript": "^3.6" | ||||
|             } | ||||
|         }, | ||||
| @ -74,6 +75,7 @@ | ||||
|             "version": "3.9.9", | ||||
|             "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.9.tgz", | ||||
|             "integrity": "sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w==", | ||||
|             "dev": true, | ||||
|             "bin": { | ||||
|                 "tsc": "bin/tsc", | ||||
|                 "tsserver": "bin/tsserver" | ||||
| @ -9963,7 +9965,8 @@ | ||||
|                 "typescript": { | ||||
|                     "version": "3.9.9", | ||||
|                     "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.9.tgz", | ||||
|                     "integrity": "sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w==" | ||||
|                     "integrity": "sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w==", | ||||
|                     "dev": true | ||||
|                 } | ||||
|             } | ||||
|         }, | ||||
|  | ||||
| @ -1,10 +1,9 @@ | ||||
| import { t } from "@lingui/macro"; | ||||
| import { customElement, html, TemplateResult } from "lit-element"; | ||||
| import { AdminStatus, AdminStatusCard } from "./AdminStatusCard"; | ||||
| import { AdminApi, StatusEnum } from "authentik-api"; | ||||
| import { AdminApi, StatusEnum, CapabilitiesEnum } from "authentik-api"; | ||||
| import { config, DEFAULT_CONFIG } from "../../../api/Config"; | ||||
| import { convertToTitle } from "../../../utils"; | ||||
| import { CapabilitiesEnum } from "authentik-api/src"; | ||||
|  | ||||
| @customElement("ak-admin-status-card-backup") | ||||
| export class BackupStatusCard extends AdminStatusCard<StatusEnum> { | ||||
|  | ||||
| @ -202,7 +202,7 @@ export class PolicyBindingForm extends ModelForm<PolicyBinding, string> { | ||||
|             </ak-form-element-horizontal> | ||||
|             <ak-form-element-horizontal name="negate"> | ||||
|                 <div class="pf-c-check"> | ||||
|                     <input type="checkbox" class="pf-c-check__input" ?checked=${first(this.instance?.negate, true)}> | ||||
|                     <input type="checkbox" class="pf-c-check__input" ?checked=${first(this.instance?.negate, false)}> | ||||
|                     <label class="pf-c-check__label"> | ||||
|                         ${t`Negate result`} | ||||
|                     </label> | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Jens Langhammer
					Jens Langhammer