diff --git a/packages/builder/src/components/start/ChooseIconModal.svelte b/packages/builder/src/components/start/ChooseIconModal.svelte index 17b2260a42..d9973dd32f 100644 --- a/packages/builder/src/components/start/ChooseIconModal.svelte +++ b/packages/builder/src/components/start/ChooseIconModal.svelte @@ -8,20 +8,21 @@ let selectedColor let iconsList = [ - { icon: "Actions", color: "" }, - { icon: "Algorithm", color: "" }, - { icon: "App", color: "" }, - { icon: "Briefcase", color: "" }, - { icon: "Money", color: "" }, - { icon: "ShoppingCart", color: "" }, - { icon: "Form", color: "" }, - { icon: "Help", color: "" }, - { icon: "Monitoring", color: "" }, - { icon: "Sandbox", color: "" }, - { icon: "Project", color: "" }, - { icon: "Organisations", color: "" }, - { icon: "Magnify", color: "" }, - { icon: "Launch", color: "" }, + "Actions", + "Algorithm", + "App", + "Briefcase", + "Money", + "ShoppingCart", + "Form", + "Help", + "Monitoring", + "Sandbox", + "Project", + "Organisations", + "Magnify", + "Launch", + "Actions", ] export const show = () => { modal.show() @@ -60,10 +61,10 @@ {#each iconsList as item}
(selectedIcon = item.icon)} > - +
{/each} @@ -85,7 +86,7 @@