文件操作 - Forms.tsx
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/plugins/datasource/cloudwatch/components/Forms.tsx
编辑文件内容
import React, { InputHTMLAttributes, FunctionComponent } from 'react'; import { InlineFormLabel } from '@grafana/ui'; export interface Props extends InputHTMLAttributes<HTMLInputElement> { label: string; tooltip?: string; children?: React.ReactNode; } export const QueryField: FunctionComponent<Partial<Props>> = ({ label, tooltip, children }) => ( <> <InlineFormLabel width={8} className="query-keyword" tooltip={tooltip}> {label} </InlineFormLabel> {children} </> ); export const QueryInlineField: FunctionComponent<Props> = ({ ...props }) => { return ( <div className={'gf-form-inline'}> <QueryField {...props} /> <div className="gf-form gf-form--grow"> <div className="gf-form-label gf-form-label--grow" /> </div> </div> ); };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件