Skip to content

Commit

Permalink
add multicamera to triggerbuttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgineer85 committed Nov 19, 2024
1 parent 033a964 commit 3e7aa11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export default defineComponent({
console.log('keyboard input is disabled, to use keyboard input enable it in the configuration and reload the page.');
return;
}
const action_collections = ['actions.image', 'actions.collage', 'actions.animation', 'actions.video', 'share.actions'];
const action_collections = ['actions.image', 'actions.collage', 'actions.animation', 'actions.video', 'actions.multicamera', 'share.actions'];
action_collections.forEach((action_collection) => {
const action_config = this.configurationStore.getConfigElement(action_collection, []);
action_config.forEach((action, index) => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/IndexPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default defineComponent({
get() {
const result = [];
const action_collections = ['actions.image', 'actions.collage', 'actions.animation', 'actions.video', 'printer.print'];
const action_collections = ['actions.image', 'actions.collage', 'actions.animation', 'actions.video', 'actions.multicamera', 'printer.print'];
action_collections.forEach((action_collection) => {
const action_config = this.configurationStore.getConfigElement(action_collection, []);
action_config.forEach((action, index) => {
Expand Down

0 comments on commit 3e7aa11

Please sign in to comment.