Commit eb4391a2 by Dominik Prokop Committed by GitHub

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

parent 36e9d262
...@@ -41,3 +41,5 @@ export const FormLabel: FunctionComponent<Props> = ({ ...@@ -41,3 +41,5 @@ export const FormLabel: FunctionComponent<Props> = ({
</label> </label>
); );
}; };
export const InlineFormLabel = FormLabel;
...@@ -163,7 +163,7 @@ export { FileUpload } from './FileUpload/FileUpload'; ...@@ -163,7 +163,7 @@ export { FileUpload } from './FileUpload/FileUpload';
// Legacy forms // Legacy forms
// Export this until we've figured out a good approach to inline form styles. // 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 // Select
import { Select, AsyncSelect } from './Forms/Legacy/Select/Select'; import { Select, AsyncSelect } from './Forms/Legacy/Select/Select';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment