Переглянути джерело

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>
         );