Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Oct 4, 2024
1 parent 67d855f commit 4c670dd
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 4c670dd

Please sign in to comment.