Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit d442845

Browse files
authored
Merge pull request #6680 from SimonBrandner/fix/commands/18670
Fix command autocomplete
2 parents 7951c8d + ecd45f7 commit d442845

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

res/css/views/rooms/_Autocomplete.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/* a "block" completion takes up a whole line */
2222
.mx_Autocomplete_Completion_block {
23-
height: 34px;
23+
min-height: 34px;
2424
display: flex;
2525
padding: 0 12px;
2626
user-select: none;

src/autocomplete/CommandProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default class CommandProvider extends AutocompleteProvider {
9595
renderCompletions(completions: React.ReactNode[]): React.ReactNode {
9696
return (
9797
<div
98-
className="mx_Autocomplete_Completion_container_block"
98+
className="mx_Autocomplete_Completion_container_pill"
9999
role="presentation"
100100
aria-label={_t("Command Autocomplete")}
101101
>

0 commit comments

Comments
 (0)