Procházet zdrojové kódy

Merge branch 'master' into improvement/initialize-client

Yuki Takei před 5 roky
rodič
revize
832be62dc6

+ 2 - 1
CHANGES.md

@@ -2,7 +2,8 @@
 
 
 ## v4.0.6-RC
 ## v4.0.6-RC
 
 
-*
+* Fix: Avatar images in Recent Changes are not shown
+* Fix: Full screen modal of Handsontable and Draoio don't work
 
 
 ## v4.0.5
 ## v4.0.5
 
 

+ 1 - 1
src/client/js/components/Sidebar/RecentChanges.jsx

@@ -59,7 +59,7 @@ class RecentChanges extends React.Component {
     return (
     return (
       <li className="list-group-item p-2">
       <li className="list-group-item p-2">
         <div className="d-flex w-100">
         <div className="d-flex w-100">
-          <UserPicture user={page.lastUpdatedUser} size="md" />
+          <UserPicture user={page.lastUpdateUser} size="md" />
           <div className="flex-grow-1 ml-2">
           <div className="flex-grow-1 ml-2">
             { !dPagePath.isRoot && <FormerLink /> }
             { !dPagePath.isRoot && <FormerLink /> }
             <h5 className="mb-1">
             <h5 className="mb-1">

+ 2 - 2
src/client/styles/scss/_mixins.scss

@@ -83,9 +83,9 @@
 @mixin expand-modal-fullscreen($hasModalHeader: true, $hasModalFooter: true) {
 @mixin expand-modal-fullscreen($hasModalHeader: true, $hasModalFooter: true) {
   // full-screen modal
   // full-screen modal
   width: auto;
   width: auto;
-  max-width: unset;
+  max-width: unset !important;
   height: calc(100vh - 30px);
   height: calc(100vh - 30px);
-  margin: 15px;
+  margin: 15px !important;
 
 
   .modal-content {
   .modal-content {
     height: calc(100vh - 30px);
     height: calc(100vh - 30px);