⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
admin
/
View File Name :
OrgRolePicker.tsx
import React from 'react'; import { OrgRole } from '@grafana/data'; import { Select } from '@grafana/ui'; interface Props { value: OrgRole; disabled?: boolean; 'aria-label'?: string; inputId?: string; onChange: (role: OrgRole) => void; autoFocus?: boolean; width?: number | 'auto'; } const basicRoles = Object.values(OrgRole).filter((r) => r !== OrgRole.None); const options = basicRoles.map((r) => ({ label: r, value: r })); export function OrgRolePicker({ value, onChange, 'aria-label': ariaLabel, inputId, autoFocus, ...restProps }: Props) { return (
onChange(val.value as OrgRole)} placeholder="Choose role..." aria-label={ariaLabel} autoFocus={autoFocus} {...restProps} /> ); }