Skip to content

Commit

Permalink
fix(client/submenu): fixed left badge not remaining
Browse files Browse the repository at this point in the history
  • Loading branch information
ardelan869 committed Oct 16, 2024
1 parent e0c60ea commit d0648f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ game 'gta5'
lua54 'yes'

author 'ardelan869'
version 'refactor(client/main): changed audios'
version 'fix(client/submenu): fixed left badge not remaining'
description 'FiveM native Rage Menu, made with React'

ui_page 'web/dist/index.html'
Expand Down
2 changes: 1 addition & 1 deletion import.lua
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ function Menu:Create(menuTitle, menuSubtitle, menuWidth, maxVisibleItems, banner
function menu:AddSubmenu(submenu, label, rightLabel, description, badges, disabled)
if not badges or not badges.right then
badges = {
left = nil,
left = badges and badges.left or nil,
right = 'arrowright'
};
end
Expand Down

0 comments on commit d0648f8

Please sign in to comment.