Browse Source

place items in order of appearance

Artur Paikin 6 years ago
parent
commit
e8129e8911
1 changed files with 3 additions and 3 deletions
  1. 3 3
      packages/@uppy/dashboard/src/PanelTopBar.js

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

@@ -9,12 +9,12 @@ function DashboardContentTitle (props) {
 function PanelTopBar (props) {
   return (
     <div class="uppy-DashboardContent-bar">
-      <div class="uppy-DashboardContent-title" role="heading" aria-level="h1">
-        <DashboardContentTitle {...props} />
-      </div>
       <button class="uppy-DashboardContent-back"
         type="button"
         onclick={props.cancelAll}>{props.i18n('cancel')}</button>
+      <div class="uppy-DashboardContent-title" role="heading" aria-level="h1">
+        <DashboardContentTitle {...props} />
+      </div>
       <button class="uppy-DashboardContent-addMore"
         type="button"
         aria-label={props.i18n('addMoreFiles')}