fix copy button in string editor
Some checks failed
Build Docs / changes (push) Failing after 2s
Build Docs / build-docs (push) Has been skipped
Build Docs / deploy-docs (push) Has been skipped

This commit is contained in:
Alexander Kalinovsky
2025-05-04 21:15:28 +07:00
parent 094c36f61b
commit dcacd31bbc

View File

@@ -81,7 +81,7 @@ async def string_editor(
keyboard_builder.row( keyboard_builder.row(
InlineKeyboardButton( InlineKeyboardButton(
text=_current_value_caption, text=_current_value_caption,
copy_text=CopyTextButton(text=_current_value), copy_text=CopyTextButton(text=_current_value[:256]),
) )
) )