grafana/ui: Do not rename export for InlineFormLabel (#26118)

This commit is contained in:
Dominik Prokop
2020-07-07 14:09:58 +02:00
committed by GitHub
parent 36e9d262c0
commit eb4391a228
2 changed files with 3 additions and 1 deletions
@@ -41,3 +41,5 @@ export const FormLabel: FunctionComponent<Props> = ({
</label>
);
};
export const InlineFormLabel = FormLabel;
+1 -1
View File
@@ -163,7 +163,7 @@ export { FileUpload } from './FileUpload/FileUpload';
// Legacy forms
// Export this until we've figured out a good approach to inline form styles.
export { FormLabel as InlineFormLabel } from './FormLabel/FormLabel';
export { InlineFormLabel } from './FormLabel/FormLabel';
// Select
import { Select, AsyncSelect } from './Forms/Legacy/Select/Select';