瀏覽代碼

Merge pull request #5543 from CatChenal/master

Removed <p> around the <pre> in <div>
Afshin Darian 6 年之前
父節點
當前提交
1432b56f51
共有 1 個文件被更改,包括 3 次插入5 次删除
  1. 3 5
      packages/application-extension/src/index.tsx

+ 3 - 5
packages/application-extension/src/index.tsx

@@ -142,11 +142,9 @@ const main: JupyterLabPlugin<void> = {
 
         const body = (
           <div>
-            <p>
-              JupyterLab build is suggested:
-              <br />
-              <pre>{response.message}</pre>
-            </p>
+            JupyterLab build is suggested:
+            <br />
+            <pre>{response.message}</pre>
           </div>
         );