Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicSponge committed Jun 25, 2024
1 parent 54b30b9 commit 08f6475
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion renderer/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ onMounted(() => {
v-model:launch-menu="_launchMenu"
v-model:menu-list="_menuList"
@rebuild="buildMenuList"
:menu-id=Number.MAX_SAFE_INTEGER> <!-- Main menu starts at MAX INT -->
:menu-id="Number.MAX_SAFE_INTEGER"> <!-- Main menu starts at MAX INT -->
</MenuBuilder>
</div>
<footer>
Expand Down
2 changes: 1 addition & 1 deletion renderer/components/MenuBuilder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const moveDown = (idx:number):void => {
v-model:launch-menu="_launchMenu[idx].sub"
v-model:menu-list="_menuList"
@rebuild="$emit('rebuild')"
:menu-id=_launchMenu[idx].id>
:menu-id="_launchMenu[idx].id">
</MenuBuilder>
</td>
<td v-else-if="item.hasOwnProperty('label') && item.hasOwnProperty('command')" class="item">
Expand Down

0 comments on commit 08f6475

Please sign in to comment.