Jelajahi Sumber

:art: 限制气泡宽度500

visuddhinanda 3 tahun lalu
induk
melakukan
383d8af85d
1 mengubah file dengan 4 tambahan dan 1 penghapusan
  1. 4 1
      dashboard/src/components/template/Note.tsx

+ 4 - 1
dashboard/src/components/template/Note.tsx

@@ -13,7 +13,10 @@ const NoteCtl = ({ trigger, note, children }: IWidgetNoteCtl) => {
   const show = trigger ? trigger : <InfoCircleOutlined />;
   return (
     <>
-      <Popover content={children} placement="bottom">
+      <Popover
+        content={<div style={{ width: 500 }}>{children}</div>}
+        placement="bottom"
+      >
         <Link>{show}</Link>
       </Popover>
     </>