Skip to content

Commit

Permalink
Convert table value to string
Browse files Browse the repository at this point in the history
  • Loading branch information
Macsob committed Jan 24, 2024
1 parent 5e8f900 commit b6f203f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/chatgpt/help.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ M.get_help_panel = function(type)

for _, k in pairs(settings_keys) do
local key = NuiText(
" " .. settings[k] .. string.rep(" ", max_setting_value_length + 1 - #settings[k]),
" " .. tostring(settings[k]) .. string.rep(" ", max_setting_value_length + 1 - #settings[k]),
Config.options.highlights.help_key
)

Expand Down

0 comments on commit b6f203f

Please sign in to comment.