This commit is contained in:
@@ -205,14 +205,27 @@ export default function Menu(props) {
|
|||||||
|
|
||||||
{/* CONTENEUR DES BOUTONS D'ACTIONS */}
|
{/* CONTENEUR DES BOUTONS D'ACTIONS */}
|
||||||
|
|
||||||
<div className="my-1 flex flex-col space-y-2">
|
<div className="my-1 w-full">
|
||||||
<label htmlFor="midi-in-select" className="text-xs font-bold text-gray-500 uppercase">DEVICE IMPORT</label>
|
<div className="text-xs font-bold text-gray-500 uppercase mb-1">Device Import</div>
|
||||||
|
|
||||||
|
<div className="grid grid-cols-2 gap-1">
|
||||||
<button
|
<button
|
||||||
|
disabled={props.page === 'memory'}
|
||||||
|
className="btn bg-indigo-600 text-white hover:bg-indigo-700 w-full font-semibold"
|
||||||
|
onClick={() => requestCurrentPatchDump()}
|
||||||
|
>
|
||||||
|
📥 Patch
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
disabled={props.page === 'editor'}
|
||||||
className="btn bg-indigo-600 text-white hover:bg-indigo-700 w-full font-semibold"
|
className="btn bg-indigo-600 text-white hover:bg-indigo-700 w-full font-semibold"
|
||||||
onClick={() => {requestCurrentPatchDump();}}
|
onClick={() => requestAllDump()}
|
||||||
>📥 Import from KORG
|
>
|
||||||
|
📥 Global
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* CONTENEUR DES BOUTONS D'ACTIONS */}
|
{/* CONTENEUR DES BOUTONS D'ACTIONS */}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user