Pārlūkot izejas kodu

props.totalFileCount < props.maxNumberOfFiles, check to see if maxNumberOfFiles even exists?

Artur Paikin 6 gadi atpakaļ
vecāks
revīzija
b2206f636f

+ 3 - 1
packages/@uppy/dashboard/src/components/PanelTopBar.js

@@ -7,7 +7,9 @@ function DashboardContentTitle (props) {
 }
 
 function PanelTopBar (props) {
-  const notOverFileLimit = props.maxNumberOfFiles !== props.totalFileCount
+  const notOverFileLimit = props.maxNumberOfFiles
+    ? props.totalFileCount < props.maxNumberOfFiles
+    : true
 
   return (
     <div class="uppy-DashboardContent-bar">