Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Sep 24, 2024
1 parent 5ea6ce1 commit e2154e6
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/fontra/client/core/ui-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,7 @@ export function popUpMenu(controller, key, menuItems, options) {
},
},
menuItems.map((menuItem) =>
html.option(
{
value: menuItem.identifier,
},
[menuItem.value]
)
html.option({ value: menuItem.identifier }, [menuItem.value])
)
);
selectElement.value = controller.model[key];
Expand Down

0 comments on commit e2154e6

Please sign in to comment.