瀏覽代碼

fixed prettier on switch component

Torkel Ödegaard 7 年之前
父節點
當前提交
a803435b27
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      packages/grafana-ui/src/components/Switch/Switch.tsx

+ 2 - 1
packages/grafana-ui/src/components/Switch/Switch.tsx

@@ -14,7 +14,8 @@ export interface Props {
 export interface State {
   id: any;
 }
- export class Switch extends PureComponent<Props, State> {
+
+export class Switch extends PureComponent<Props, State> {
   state = {
     id: _.uniqueId(),
   };