Skip to content

Commit

Permalink
Make command at login page selectable
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaBernstein committed May 25, 2023
1 parent ca107bd commit 5cb89cb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions api/ui/lib/screens/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,14 @@ class _LoginState extends State<LoginPage> {
),
)
])),
const Text(
'Hint: In order to receive the credentials from your beancount-bot-tg instance, you need to activate the API first: For that, issue the following command:\n\n/config enable_api on'),
const Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Hint: In order to receive the credentials from your beancount-bot-tg instance, you need to activate the API first: For that, issue the following command:\n'),
SelectableText('/config enable_api on'),
],
)
],
),
),
Expand Down

0 comments on commit 5cb89cb

Please sign in to comment.