-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instrument page updates #194
Conversation
…ted somewhere in a ts lib that might not be available during ts-morph transforms
…ng create/edit Instrument from InstrumentsPage
…o cut off audio when pause
…f data to parent component which might not need demo instruments
Very cool! The system integrates very nicely. I noticed that you commited this in a new branch and are merging this into the development branch. Is there a specific reason to do this compared to just commiting directly into development? |
Thanks! Glad you're digging it. It should be a nice upgrade from what's currently there.
For larger features or refactors, I usually like to make a separate branch off of In terms of branching workflows, I think it's probably closest to GitLab's flow with feature branches, a staging/development branch, and a production branch. |
… fix preview issue when creating in WorkstationPage
Ah that's a nice way of doing it. GitLab's flow looks very interesting. |
Resolves #60
Resolves #115
Updates

InstrumentsPage
to render theInstrumentSettings
component on the right side of the page to create or edit Instruments.If no Instruments currently exist, an empty state is rendered inside the table with a CTA to create a new one.
If Instruments exist and one has not been selected for editing, an empty state is rendered on the right side of the page with a CTA to create a new one
Fixed the bug where the Instrument preview functionality wouldn't work until persisted (this was initially caused by an
undefined
id on creation, however, I also found an issue where the proper sample wasn't playing after changing files. This should be fixed now.)