fix(ui): broken buttons in the bulk upload drawer (#8926)
Fixes the mobile bottom interface and the arrow buttons in the actions at the top. Before:  After: 
This commit is contained in:
@@ -98,6 +98,14 @@ export function FileSidebar() {
|
||||
className={`${baseClass}__toggler`}
|
||||
onClick={() => setShowFiles((prev) => !prev)}
|
||||
>
|
||||
<span className={`${baseClass}__toggler__label`}>
|
||||
<strong
|
||||
title={`${totalFileCount} ${t(totalFileCount > 1 ? 'upload:filesToUpload' : 'upload:fileToUpload')}`}
|
||||
>
|
||||
{totalFileCount}{' '}
|
||||
{t(totalFileCount > 1 ? 'upload:filesToUpload' : 'upload:fileToUpload')}
|
||||
</strong>
|
||||
</span>
|
||||
<ChevronIcon direction={showFiles ? 'down' : 'up'} />
|
||||
</Button>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user